diff options
author | Roman Cheplyaka <roma@ro-che.info> | 2008-08-22 22:26:04 +0200 |
---|---|---|
committer | Roman Cheplyaka <roma@ro-che.info> | 2008-08-22 22:26:04 +0200 |
commit | 6bce4e55e91361b2a325cf67c91994ee6f14178e (patch) | |
tree | 5869e00802aaf6b3d8530402b033c0b7e992fc7a /README | |
parent | 035ce3810d5305accfe89e8ccb535d23a534c175 (diff) | |
download | xmobar-6bce4e55e91361b2a325cf67c91994ee6f14178e.tar.gz xmobar-6bce4e55e91361b2a325cf67c91994ee6f14178e.tar.bz2 |
Fix README to use :*:
darcs-hash:20080822202604-3ebed-82e6ca80d0668b65bbe9711536efafc401caf466.gz
Diffstat (limited to 'README')
-rw-r--r-- | README | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -470,7 +470,7 @@ install the HelloWorld plugin that comes with [xmobar]: signature of `runnableTypes` in `Config.hs`. For instance, for the HelloWorld plugin, change `runnableTypes` into: - runnableTypes :: (Command,(Monitors,(HelloWorld,()))) + runnableTypes :: Command :*: Monitors :*: HelloWorld :*: () runnableTypes = undefined 3. Rebuild and reinstall [xmobar]. Now test it with: @@ -499,12 +499,12 @@ To remove the system monitor plugin: 2. in `Config.hs` change - runnableTypes :: (Command,(Monitors,())) + runnableTypes :: Command :*: Monitors :*: () runnableTypes = undefined to - runnableTypes :: (Command,()) + runnableTypes :: Command :*: () runnableTypes = undefined 3. rebuild [xmobar]. |