-
Notifications
You must be signed in to change notification settings - Fork 1
/
xmobarrc
84 lines (72 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
Config {
font = "xft:SFNS Display:size=12",
additionalFonts = ["xft:FontAwesome:size=12"],
alpha = 0,
bgColor = "#575757",
fgColor = "#dcdccc",
position = TopW L 93,
persistent = False,
commands = [
Run MultiCpu [
"-t", "<fn=1>\xf0ae</fn> <total>%",
"-w","2",
"-c","0",
"-H","50",
"--high","red"
] 10,
Run Memory [
"-a", "l",
"-w", "4",
"-t","<fn=1>\xf2db</fn><usedratio>%",
"-L", "50",
"-H", "75",
"-l", "lightgreen",
"-n", "yellow",
"-h", "red"
] 10,
Run Date "%d-%m-%Y %H:%M:%S" "date" 10,
Run Battery [
"--template" , "<acstatus>",
"--Low" , "10",
"--High" , "50",
"--low" , "red",
"--normal" , "yellow",
"--high" , "lightgreen",
"--",
"-o" , "<leftipat> <left>%",
"-O" , "<leftipat> <left>%",
"-i" , "<leftipat> <left>%",
"-i" , "<fn=1>\xf240</fn>",
"--off-icon-pattern", "<fn=1>\xf240</fn>",
"--on-icon-pattern", "<fn=1>\xf0e7</fn>",
"--idle-icon-pattern", "<fn=1>\xf0e7</fn>"
] 50,
Run Com "/bin/bash" ["-c", "~/.xmonad/get-volume"] "myvolume" 10,
Run UnsafeStdinReader,
Run Wireless "wlp0s20f3" [
"-a", "l",
"-t", "<fn=1>\xf1eb</fn> <essid>",
"-L", "50",
"-H", "75",
"-l", "red",
"-n", "yellow",
"-h", "lightgreen"
] 10,
Run ThermalZone 0 [
"-t","<fn=1>\xf2c9</fn> <temp>°C",
"--Low" , "50",
"--High" , "60",
"--low" , "lightgreen",
"--normal" , "yellow",
"--high" , "red"
] 30,
Run Brightness [
"-t", "<fn=1>\xf0eb</fn> <percent>%",
"--",
"-D", "intel_backlight"
] 50
],
sepChar = "%",
alignSep = "}{",
template = "%UnsafeStdinReader% }{ %wlp0s20f3% | %battery% | %multicpu% | %memory% | %bright% | %thermal0% | Vol: %myvolume% | %date% "
}