diff options
author | Andrea Rossato <andrea.rossato@ing.unitn.it> | 2007-07-18 17:12:11 +0200 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@ing.unitn.it> | 2007-07-18 17:12:11 +0200 |
commit | a8653d8712c2d218adf3f70cef7e511060bed695 (patch) | |
tree | b463eaa897d30c41163d0e5fbee89aa946980e7f /Config.hs | |
parent | 7235e59441c94580e99d50774629579fe54c6b1a (diff) | |
download | xmobar-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.hs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |