-
Notifications
You must be signed in to change notification settings - Fork 1
/
xmobarrc
28 lines (28 loc) · 935 Bytes
/
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
28
Config
{ font = "xft:Meslo LG S-10"
, border = NoBorder
, bgColor = "black"
, fgColor = "grey"
, position = TopP 100 0
, commands =
[ Run BatteryP [ "BAT0" ]
[ "-t", "Bat: <left>% <acstatus>", "-m", "3"
, "--", "-f", "ADP1/online", "-i", "Idle"
] 10
, Run Cpu
[ "-m", "3", "-t", "<total>%"
, "-L", "3", "-H", "50", "-n", "green", "-h", "red"
] 10
, Run CoreTemp
[ "-t", "<core0>°"
, "-L", "50", "-H", "70", "-n", "green", "-h", "red"
] 10
, Run Memory ["-m", "3", "-t","Mem: <usedratio>%"] 10
, Run Swap ["-m", "3"] 10
, Run Date "%_d %a %H:%M:%S" "date" 10
, Run StdinReader
]
, sepChar = "%"
, alignSep = "}{"
, template = "%StdinReader%}{CPU: %cpu% %coretemp% | %memory% | %swap% | %battery% <fc=#ee9a00>%date%</fc>"
}