summaryrefslogtreecommitdiffhomepage
path: root/Config.hs
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@ing.unitn.it>2007-07-18 17:12:11 +0200
committerAndrea Rossato <andrea.rossato@ing.unitn.it>2007-07-18 17:12:11 +0200
commita8653d8712c2d218adf3f70cef7e511060bed695 (patch)
treeb463eaa897d30c41163d0e5fbee89aa946980e7f /Config.hs
parent7235e59441c94580e99d50774629579fe54c6b1a (diff)
downloadxmobar-a8653d8712c2d218adf3f70cef7e511060bed695.tar.gz
xmobar-a8653d8712c2d218adf3f70cef7e511060bed695.tar.bz2
Monitors are now a Plugin that can be removed from Config.hs
darcs-hash:20070718151211-d6583-7e0e49c22d07feda72d03370fd592c196dfcc9c1.gz
Diffstat (limited to 'Config.hs')
-rw-r--r--Config.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Config.hs b/Config.hs
index e21b7ff..021ee28 100644
--- a/Config.hs
+++ b/Config.hs
@@ -21,6 +21,7 @@ module Config ( -- * Configuration
import Commands
import {-# SOURCE #-} Runnable
+import Plugins.Monitors
-- $config
-- Configuration data type and default configuration
@@ -66,5 +67,5 @@ defaultConfig =
-- the 'Runnable.Runnable' Read instance. To install a plugin just add
-- the plugin's type to the list of types appearing in this function's type
-- signature.
-runnableTypes :: (Command,())
+runnableTypes :: (Command,(Monitors,()))
runnableTypes = undefined