-
Notifications
You must be signed in to change notification settings - Fork 0
/
xmobarrc
27 lines (27 loc) · 1.06 KB
/
xmobarrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Config { overrideRedirect = True
, font = "JetBrainsMono-9"
, bgColor = "#191919"
, fgColor = "#c6d6f7"
, position = TopW L 100
, commands = [ Run Weather "KATL"
[ "--template", "<skyCondition> <tempF>°F"
, "-L", "0"
, "-H", "25"
, "--low" , "lightblue"
, "--normal", "#c6d6f7"
, "--high" , "#f57e76"
] 36000
, Run Cpu
[ "-L", "10"
, "-H", "75"
, "--high" , "#f57e76"
, "--normal", "#acfab9"
] 10
, Run Memory ["--template", "Mem: <usedratio>%"] 10
, Run Date "%a %Y-%m-%d <fc=#c6d6f7>%H:%M</fc>" "date" 10
, Run XMonadLog
]
, sepChar = "%"
, alignSep = "}{"
, template = "%XMonadLog% }{ %cpu% | %memory% | %KATL% | %date% "
}