-
Notifications
You must be signed in to change notification settings - Fork 0
/
.xmobarrc
26 lines (26 loc) · 1.52 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
Config { font = "xft:Ubuntu Mono:size=10:bold:antialias=true"
, borderColor = "black"
, border = TopB
, bgColor = "black"
, fgColor = "grey"
, position = TopW L 100
, commands = [ Run Network "eth0" ["-L","0","-H","32","--normal","green","--high","red"] 10
, Run Network "eth1" ["-L","0","-H","32","--normal","green","--high","red"] 10
, Run Cpu ["-L","3","-H","50","--normal","green","--high","red"] 10
, Run Memory ["-t","Mem: <usedratio>%"] 10
, Run Swap [] 10
, Run Com "uname" ["-s","-r"] "" 36000
, Run Date "%a %b %_d %Y %H:%M" "date" 10
, Run StdinReader
, Run Battery [ "--template" , "Batt: <acstatus>"
, "-L", "10", "-H", "80", "--normal", "green", "--low", "red"
, "--" -- Battery specific options
, "-o", "<left>% (<timeleft>)" -- discharging
, "-O", "<fc=#dAA520>Charging</fc>" -- AC "on" status
, "-i", "<fc=#006000>Charged</fc>" -- charged status
] 50
]
, sepChar = "%"
, alignSep = "}{"
, template = "%StdinReader% | %cpu% | %memory% * %swap% | %eth0% - %eth1% }{<fc=#ee9a00>%date%</fc> | %uname% | %battery%"
}