-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.xmobarrc
41 lines (37 loc) · 1.81 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Config { font = "-misc-fixed-*-*-*-*-12-*-*-*-*-*-*-*"
, borderColor = "black"
, allDesktops = True
, overrideRedirect = False
, border = TopB
, bgColor = "black"
, fgColor = "gray"
, position = Top
, pickBroadest = False
, persistent = False
, lowerOnStart = True
, hideOnStart = False
, sepChar = "%"
, alignSep = "}{"
, template = "%uname% | %date% | %StdinReader% }{ %wlan0% | %memory% | %cpu% | %battery%"
, commands = [ Run StdinReader
, Run Com "uname" ["-s","-r"] "" 36000
, Run Memory ["-t", "Mem: <usedratio>%"] 10
, Run Cpu ["-L", "3", "-H", "32", "--normal", "green", "--high", "red"] 10
, Run Date "%a %b %_d %Y %H:%M:%S" "date" 10
, Run Network "wlan0" ["-L", "0", "-H", "32", "--normal", "green", "--high", "red"] 10
, Run Battery [ "--template" , "Batt: <acstatus>"
, "--Low" , "10" -- units: %
, "--High" , "80" -- units: %
, "--low" , "darkred"
, "--normal" , "darkorange"
, "--high" , "darkgreen"
, "--" -- battery specific options
-- discharging status
, "-o" , "<left>% (<timeleft>)"
-- AC "on" status
, "-O" , "<fc=#dAA520>Charging</fc>"
-- charged status
, "-i" , "<fc=#006000>Charged</fc>"
] 50
]
}