dotfiles/.config/xmobar/xmobarrc

21 lines
809 B
Plaintext
Raw Normal View History

2024-07-03 19:58:34 -04:00
Config
{ font = "Terminus 8"
, textOffset = 0
, bgColor = "#121212"
, fgColor = "#cccccc"
, position = Top
2024-07-04 16:48:07 -04:00
, template = " %XMonadLog% }{ %network% <fc=#777777>:</fc> VOL %volume% <fc=#777777>:</fc> %battery% <fc=#777777>:</fc> CPU %cpu% <fc=#777777>:</fc> RAM %memory% <fc=#777777>:</fc> %load% <fc=#777777>:</fc> <fc=#f7e83b>%date%</fc> "
2024-07-03 19:58:34 -04:00
, commands =
[ Run XMonadLog
, Run Com "monitors" ["network"] "network" 6000
2024-07-03 19:58:34 -04:00
, Run PipeReader "/tmp/pipe-volume" "volume"
, Run Com "monitors" ["battery"] "battery" 36000
, Run Com "monitors" ["cpu"] "cpu" 50
, Run Com "monitors" ["memory"] "memory" 50
, Run Com "monitors" ["load"] "load" 6000
2024-07-03 19:58:34 -04:00
, Run Date "%d/%m/%Y %H:%M:%S" "date" 10
]
}
-- vim:ft=haskell