-
Notifications
You must be signed in to change notification settings - Fork 0
/
.xmobarrc
55 lines (52 loc) · 2.09 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Config {
font = "xft:Hack:size=10"
, additionalFonts = []
, borderColor = "black"
, border = TopB
, bgColor = "#002b36"
, fgColor = "#657b83"
, alpha = 255
, position = Top
, textOffset = -1
, iconOffset = -1
, lowerOnStart = True
, pickBroadest = False
, persistent = False
, hideOnStart = False
, iconRoot = "."
, allDesktops = True
, overrideRedirect = True
, commands =
[ Run Network "wlp2s0" [ "-L" , "30"
, "-H" , "70"
, "--low" , "#859900"
, "--normal" , "#2aa198"
, "--high" , "#dc322f"
] 10
, Run Cpu [ "-L" , "15"
, "-H" , "75"
, "--low" , "#859900"
, "--normal" , "#2aa198"
, "--high" , "#dc322f"
] 10
, Run Memory [ "-t" , "Mem: <usedratio>%"
, "--low" , "#859900"
, "--normal" , "#2aa192"
, "--high" , "#dc322f"
] 10
, Run Swap [ "--low" , "#859900"
, "--normal" , "#2aa192"
, "--high" , "#dc322f"
] 10
, Run Battery [ "--low" , "#dc332f"
, "--normal" , "#2aa192"
, "--high" , "#859900"
] 600
, Run Date "<fc=#93a1a1>%a %b %_d %Y %H:%M:%S</fc>" "date" 10
, Run StdinReader
]
-- templating
, sepChar = "%"
, alignSep = "}{"
, template = "%StdinReader% }{ %cpu% %memory% %swap% | %battery% | %wlp2s0% | <fc=#ee9a00>%date%</fc>"
}