diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2009-12-09 03:16:20 +0100 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2009-12-09 03:16:20 +0100 |
commit | fbdc9d635d9e2ddcf11e8f4adcbfafd16ea90e3b (patch) | |
tree | 2ece9252cb980c9e4a3b427139a909ab922f0d68 /Config.hs | |
parent | 01e09ea26fe616c7a9615d6b9c8c609081cfc822 (diff) | |
download | xmobar-fbdc9d635d9e2ddcf11e8f4adcbfafd16ea90e3b.tar.gz xmobar-fbdc9d635d9e2ddcf11e8f4adcbfafd16ea90e3b.tar.bz2 |
Add very experimental EWMH plugin
Ignore-this: 9837736ecbe1f4595f7f892bbfa3f620
darcs-hash:20091209021620-a5988-d6413cf4cde6bae98037e277f47347392e7c710a.gz
Diffstat (limited to 'Config.hs')
-rw-r--r-- | Config.hs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -31,6 +31,7 @@ import Plugins.PipeReader import Plugins.CommandReader import Plugins.StdinReader import Plugins.XMonadLog +import Plugins.EWMH #ifdef INOTIFY import Plugins.Mail @@ -91,7 +92,7 @@ infixr :*: -- the 'Runnable.Runnable' Read instance. To install a plugin just add -- the plugin's type to the list of types (separated by ':*:') appearing in -- this function's type signature. -runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: +runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: #ifdef INOTIFY Mail :*: #endif |