]> code.delx.au - dotfiles/blob - .xmonad/xmobar.hs
More generic
[dotfiles] / .xmonad / xmobar.hs
1 Config {
2 font = "-*-Fixed-Bold-R-Normal-*-13-*-*-*-*-*-*-*",
3 bgColor = "black",
4 fgColor = "grey",
5 position = TopSize L 85 20,
6 commands = [
7 Run Weather "YSSY" ["-t"," <tempC>C"] 36000,
8 Run Cpu ["-t","Cpu:<total>%","-L","3","-H","50","--high","red","-p","3"] 10,
9 Run Memory ["-t","Mem:<usedratio>%","-p","3"] 10,
10 Run Date "%a %b %_d %H:%M" "date" 10,
11 Run BatteryP ["BAT0"] ["-t","Batt: <acstatus><left>%","-L","25","--low","red","--","-O","+","-o","-","-c","energy_full","-f","ADP1/online"] 600,
12 Run StdinReader
13 ],
14 sepChar = "%",
15 alignSep = "}{",
16 template = "%StdinReader% }{ %cpu% | %memory% | %battery% <fc=#ee9a00>%date%</fc> | %YSSY%"
17 }