summaryrefslogtreecommitdiffhomepage
path: root/Main.hs
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@ing.unitn.it>2007-07-24 12:00:29 +0200
committerAndrea Rossato <andrea.rossato@ing.unitn.it>2007-07-24 12:00:29 +0200
commitae9597ffb06c1c764902a36c78abab121d0cc26b (patch)
treef83de5152d4d7fc41fc2ffc690f34a33f9f97180 /Main.hs
parent9928c4c9ea1648c0735b1219e15f00307cacfa0d (diff)
downloadxmobar-ae9597ffb06c1c764902a36c78abab121d0cc26b.tar.gz
xmobar-ae9597ffb06c1c764902a36c78abab121d0cc26b.tar.bz2
The help output must be visible in a terminal 80 characters wide
darcs-hash:20070724100029-d6583-f6d5a1232868466b65a73c5769accfda5fe9d4fc.gz
Diffstat (limited to 'Main.hs')
-rw-r--r--Main.hs18
1 files changed, 9 insertions, 9 deletions
diff --git a/Main.hs b/Main.hs
index 45b550f..8ade001 100644
--- a/Main.hs
+++ b/Main.hs
@@ -86,15 +86,15 @@ options =
[ Option ['h','?'] ["help"] (NoArg Help) "This help"
, Option ['V'] ["version"] (NoArg Version) "Show version information"
, Option ['f'] ["font"] (ReqArg Font "font name") "The font name"
- , Option ['B'] ["bgcolor"] (ReqArg BgColor "backgorund color") "The background color. Default balck"
- , Option ['F'] ["fgcolor"] (ReqArg FgColor "foregorund color") "The foreground color. Default grey"
- , Option ['x'] ["xpos"] (ReqArg XPos "x position") "The x position. Default 0"
- , Option ['y'] ["ypos"] (ReqArg YPos "y position") "The y position. Default 0"
+ , Option ['B'] ["bgcolor"] (ReqArg BgColor "bg color") "The background color. Default black"
+ , Option ['F'] ["fgcolor"] (ReqArg FgColor "fg color") "The foreground color. Default grey"
+ , Option ['x'] ["xpos"] (ReqArg XPos "x pos") "The x position. Default 0"
+ , Option ['y'] ["ypos"] (ReqArg YPos "y pos") "The y position. Default 0"
, Option ['W'] ["width"] (ReqArg Width "width") "The status bar width. Default 1024"
- , Option ['H'] ["height"] (ReqArg Height "height") "The status bar heigth. Default 15"
- , Option ['a'] ["align"] (ReqArg Align "text alignement") "The text alignment: center, left or right. Default: left"
- , Option ['r'] ["refresh"] (ReqArg Refresh "default rate") "The refresh rate in tenth of seconds: dafault 1 sec."
- , Option ['s'] ["sepchar"] (ReqArg SepChar "separation character") "The charater used to separate commands in the output templae. Default '%'"
+ , Option ['H'] ["height"] (ReqArg Height "height") "The status bar height. Default 15"
+ , Option ['a'] ["align"] (ReqArg Align "align") "The text alignment: center, left or right.\nDefault: left"
+ , Option ['r'] ["refresh"] (ReqArg Refresh "rate") "The refresh rate in tenth of seconds:\ndefault 1 sec."
+ , Option ['s'] ["sepchar"] (ReqArg SepChar "char") "The character used to separate commands in\nthe output template. Default '%'"
, Option ['t'] ["template"] (ReqArg Template "tempate") "The output template"
, Option ['c'] ["commands"] (ReqArg Commands "commands") "The list of commands to be executed"
]
@@ -111,7 +111,7 @@ usage = (usageInfo header options) ++ footer
footer = "Mail bug reports and suggestions to " ++ mail
version :: String
-version = "Xmobar 0.7 (c) 2007 Andrea Rossato " ++ mail ++ license
+version = "Xmobar 0.7 (C) 2007 Andrea Rossato " ++ mail ++ license
mail :: String
mail = "<andrea.rossato@unibz.it>\n"