summaryrefslogtreecommitdiffhomepage
path: root/Config.hs
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@ing.unitn.it>2007-07-13 14:37:07 +0200
committerAndrea Rossato <andrea.rossato@ing.unitn.it>2007-07-13 14:37:07 +0200
commit22ad130fa851909870ddc0e6caa1aa6f8d6a66a1 (patch)
treecef280aeeabf0f4ef1bfa19d86eff6dc0a33d11a /Config.hs
parent9677ad5f6283368ff000050e23d420c9bb691e1a (diff)
downloadxmobar-22ad130fa851909870ddc0e6caa1aa6f8d6a66a1.tar.gz
xmobar-22ad130fa851909870ddc0e6caa1aa6f8d6a66a1.tar.bz2
haddock tuning
darcs-hash:20070713123707-d6583-b236b40087a92c45511afb3e4350813917515c02.gz
Diffstat (limited to 'Config.hs')
-rw-r--r--Config.hs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Config.hs b/Config.hs
index b120809..9d355ad 100644
--- a/Config.hs
+++ b/Config.hs
@@ -19,7 +19,6 @@ module Config ( -- * Configuration
, runnableTypes
) where
-
import Commands
import {-# SOURCE #-} Runnable
@@ -61,5 +60,11 @@ defaultConfig =
, template = "Uptime: <fc=#00FF00>%uptime%</fc> ** <fc=#FF0000>%date%</fc> %memory%"
}
+-- | This is the list of types that can be hidden inside
+-- 'Runnable.Runnable', the existential type that stores all commands
+-- to be executed by XMobar. It is used by 'Runnable.readRunnable' in
+-- the 'Runnable.Runnable' Read instance. To install a plugin just add
+-- the plugin's type to the list of types appearing in this function's type
+-- signature.
runnableTypes :: (Command,())
runnableTypes = undefined