Xmonad/Config archive/lithis's xmobarrc

From HaskellWiki
< Xmonad‎ | Config archive
Revision as of 13:13, 9 September 2009 by Sereven (talk | contribs) (Since last three xmobar versions include lowerOnStart add it here)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Config { font = "xft:DejaVu Sans:size=8"
       , bgColor = "#304520"
       , fgColor = "#c0c0a0"
       , position = Top
       , lowerOnStart = True
       , commands = [ Run Cpu ["-L","3","-H","50","--high","#f0c040"] 10
                    , Run Memory ["-t","Mem: <usedratio>%"] 10
                    , Run Swap [] 10
                    , Run Date "%a, %b %_d %H:%M" "date" 10
                    , Run Com "TZ=America/Chicago date" ["+\"%H:%M %Z\""] "dateCST" 10
                    , Run Com "date -u" ["+\"%H:%M %Z\""] "dateUTC" 10
                    , Run StdinReader
                    ]
       , sepChar = "%"
       , alignSep = "}{"
       , template = "%StdinReader%}{%cpu% · %memory% · %swap% · %dateUTC% · %dateCST% · %date%"
       }