dotfiles/.config/xmobar/xmobarrc

26 lines
1.0 KiB
Plaintext
Raw Normal View History

2021-09-21 11:14:10 +02:00
Config { overrideRedirect = False
, font = "xft:Roboto Mono for Powerline:size=11"
2021-10-10 14:38:48 +02:00
, bgColor = "#0C0C0F"
, fgColor = "#ccdee5"
2021-09-21 11:14:10 +02:00
, position = TopW L 100
2021-10-10 14:38:48 +02:00
, iconRoot = ".config/xmobar/xpm/"
, commands = [Run Cpu
2021-09-21 11:14:10 +02:00
[ "-L", "3"
, "-H", "50"
] 10
, Run Alsa "default" "Master"
[ "--template", "<volumestatus>"
, "--suffix" , "True"
, "--"
, "--on", ""
]
, Run Memory ["--template", "Mem: <usedratio>%"] 10
2021-10-10 14:38:48 +02:00
, Run Date "%a %Y-%m-%d <fc=#8EB7CF>%H:%M</fc>" "date" 10
2021-09-21 11:14:10 +02:00
, Run XMonadLog
2021-10-10 14:38:48 +02:00
, Run Com "get_music_info" [] "" 10
2021-09-21 11:14:10 +02:00
]
, sepChar = "%"
, alignSep = "}{"
2021-10-10 14:38:48 +02:00
, template = " <icon=haskell_20.xpm/> %XMonadLog% }{ %get_music_info% | %alsa:default:Master% | %cpu% | %memory% | %date% "
2021-09-21 11:14:10 +02:00
}