diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2011-08-21 19:48:44 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2011-08-21 19:48:44 +0200 |
commit | 1fab853cb8a76eb9b7c5400924a8c53b3b095712 (patch) | |
tree | 54f20fb5987904700669d67519cc45169ae78bb7 /src/Config.hs | |
parent | 8afb450eb104e5335f4b1b976512842f7059142c (diff) | |
parent | 4a57c777bccbf169aa50411ecaed0af333ac6871 (diff) | |
download | xmobar-1fab853cb8a76eb9b7c5400924a8c53b3b095712.tar.gz xmobar-1fab853cb8a76eb9b7c5400924a8c53b3b095712.tar.bz2 |
Merge remote-tracking branch 'github/master'
Diffstat (limited to 'src/Config.hs')
-rw-r--r-- | src/Config.hs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Config.hs b/src/Config.hs index 6eb55a0..3184023 100644 --- a/src/Config.hs +++ b/src/Config.hs @@ -38,6 +38,10 @@ import Plugins.Mail import Plugins.MBox #endif +#ifdef DATEZONE +import Plugins.DateZone +#endif + -- $config -- Configuration data type and default configuration @@ -112,5 +116,8 @@ runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: CommandReader #ifdef INOTIFY Mail :*: MBox :*: #endif +#ifdef DATEZONE + DateZone :*: +#endif () runnableTypes = undefined |