-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.xmobarrc
34 lines (34 loc) · 896 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
29
30
31
32
33
34
Config {
font = "-*-Fixed-Bold-R-Normal-*-13-*-*-*-*-*-*-*",
borderColor = "black",
border = TopB,
bgColor = "black",
pickBroadest = True,
fgColor = "grey",
position = TopW L 100,
commands =
[
Run Cpu [
"-L", "3",
"-H", "50",
"--normal", "green",
"--high","red"
] 10,
Run Memory [
"-t", "Mem: <usedratio>%"
] 10,
Run Battery [
"-t", "<acstatus>: <left>% - <timeleft>",
"--",
"-O", "AC",
"-o", "Bat",
"-h", "green",
"-l", "red"
] 10,
Run Date "%k:%M:%S" "date" 10,
Run StdinReader
],
sepChar = "%",
alignSep = "}{",
template = "%StdinReader% }{ %cpu% | %memory% | %battery% | %date% "
}