summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRoman Cheplyaka <roma@ro-che.info>2008-08-22 22:26:04 +0200
committerRoman Cheplyaka <roma@ro-che.info>2008-08-22 22:26:04 +0200
commit6bce4e55e91361b2a325cf67c91994ee6f14178e (patch)
tree5869e00802aaf6b3d8530402b033c0b7e992fc7a
parent035ce3810d5305accfe89e8ccb535d23a534c175 (diff)
downloadxmobar-6bce4e55e91361b2a325cf67c91994ee6f14178e.tar.gz
xmobar-6bce4e55e91361b2a325cf67c91994ee6f14178e.tar.bz2
Fix README to use :*:
darcs-hash:20080822202604-3ebed-82e6ca80d0668b65bbe9711536efafc401caf466.gz
-rw-r--r--README6
1 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index d176e2b..d6f381f 100644
--- a/README
+++ b/README
@@ -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].