diff options
author | Reto Habluetzel <rethab@rethab.ch> | 2012-08-27 21:07:54 +0200 |
---|---|---|
committer | Reto Habluetzel <rethab@rethab.ch> | 2012-08-27 21:07:54 +0200 |
commit | 976312375bbedd05eb822b3b0d5d044aa7d4a3ea (patch) | |
tree | 392fbcfe4c34d4c1ca5aa0152844d21215cc9fab /src/Config.hs | |
parent | e7cadcd8dee8c2e79e338f67cb27b675aba6bac5 (diff) | |
download | xmobar-976312375bbedd05eb822b3b0d5d044aa7d4a3ea.tar.gz xmobar-976312375bbedd05eb822b3b0d5d044aa7d4a3ea.tar.bz2 |
added PipeReader2 which accepts a default
Diffstat (limited to 'src/Config.hs')
-rw-r--r-- | src/Config.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Config.hs b/src/Config.hs index a6ad3e2..58956af 100644 --- a/src/Config.hs +++ b/src/Config.hs @@ -28,6 +28,7 @@ import {-# SOURCE #-} Runnable import Plugins.Monitors import Plugins.Date import Plugins.PipeReader +import Plugins.PipeReader2 import Plugins.BufferedPipeReader import Plugins.CommandReader import Plugins.StdinReader @@ -120,7 +121,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 :*: BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: Kbd :*: +runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: PipeReader2 :*: BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: Kbd :*: #ifdef INOTIFY Mail :*: MBox :*: #endif |