diff options
author | Martin Perner <martin@perner.cc> | 2011-07-17 17:54:44 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2011-08-31 20:30:20 +0200 |
commit | 5ff0acdf4337218cf7349ba9fc233c3da75cf05a (patch) | |
tree | a5e210815d2ab9734f53a27432a3c21f45858ea4 /src/Config.hs | |
parent | e6e1734bc9fea3827e6692e52979ba46f1cd8b99 (diff) | |
download | xmobar-5ff0acdf4337218cf7349ba9fc233c3da75cf05a.tar.gz xmobar-5ff0acdf4337218cf7349ba9fc233c3da75cf05a.tar.bz2 |
Added Keyboard Layout Indicator Plugin
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 3184023..4405314 100644 --- a/src/Config.hs +++ b/src/Config.hs @@ -32,6 +32,7 @@ import Plugins.CommandReader import Plugins.StdinReader import Plugins.XMonadLog import Plugins.EWMH +import Plugins.Kbd #ifdef INOTIFY import Plugins.Mail @@ -112,7 +113,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 :*: EWMH :*: +runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: Kbd :*: #ifdef INOTIFY Mail :*: MBox :*: #endif |