-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxmobarrc
47 lines (40 loc) · 1.59 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
Config {
font = "xft:Bitstream Vera Sans Mono Nerd Font:size=10:antialias=true"
, position = Top
-- layout
, sepChar = "%"
, alignSep = "}{"
, template = "%StdinReader% }{ %cpufreq% | %multicpu% | %memory% | %coretemp% | %date% "
-- plugins
, commands =
[ Run StdinReader
, Run CpuFreq ["-t", "Freq:<cpu0>|<cpu1>GHz", "-L", "0", "-H", "2", "-l", "lightblue", "-n","white", "-h", "red"] 50
-- cpu activity monitor
, Run MultiCpu [ "--template" , "Cpu: <total>||<autototal>||<autoipat>"
, "--Low" , "50" -- units: %
, "--High" , "85" -- units: %
, "--low" , "darkgreen"
, "--normal" , "darkorange"
, "--high" , "darkred"
, "--"
, "--fallback-icon-pattern" , "<icon=/home/clarkema/xpm/foo_%%.xpm/>" ]
10
, Run Date "%a %d/%m %H:%M" "date" 10
-- memory usage monitor
, Run Memory [ "--template" ,"Mem: <used> (<cache>)"
, "--Low" , "20" -- units: %
, "--High" , "90" -- units: %
, "--low" , "darkgreen"
, "--normal" , "darkorange"
, "--high" , "darkred"
] 10
-- cpu core temperature monitor
, Run CoreTemp [ "--template" , "<core0>°"
, "--Low" , "70" -- units: °C
, "--High" , "80" -- units: °C
, "--low" , "darkgreen"
, "--normal" , "darkorange"
, "--high" , "darkred"
] 50
]
}