blob: 3d52ef01c8e4a5b08a33163b607068bbab65d4c5 (
plain)
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
|
general {
colors = true
interval = 5
}
order += "cpu_temperature 0"
order += "disk /"
order += "wireless wlo1"
order += "ethernet enp5s0"
order += "path_exists WG"
order += "battery 1"
order += "memory"
order += "tztime local"
cpu_temperature 0 {
format = "Temp: %degrees °C"
}
disk "/" {
format = "fs avail: %free"
}
wireless wlo1 {
format_up = "W: (%quality at %essid, %bitrate) %ip"
format_down = "W: down"
}
ethernet enp5s0 {
format_up = "E: %ip (%speed)"
}
battery 1 {
format = "%status %percentage %remaining %emptytime"
format_down = "No battery"
status_chr = "CHR"
status_bat = "BAT"
status_unk = " UNK"
status_full = "FULL"
status_idle = "IDLE"
path = "/sys/class/power_supply/BAT%d/uevent"
low_threshold = 10
}
path_exists WG {
path = "/proc/sys/net/ipv4/conf/wg0"
}
memory {
format = "MEM USED: %used"
threshold_degraded = "10%"
format_degraded = "MEM FREE: %free"
}
tztime local {
format = "%Y-%m-%d %H:%M:%S"
}
|