-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi3status_24
55 lines (47 loc) · 899 Bytes
/
i3status_24
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
general {
output_format = "i3bar"
interval = 1
separator = " | "
colors = true
color_good = "#00FF00"
color_bad = "#FF0000"
}
order += "cpu_temperature 0"
order += "cpu_temperature 1"
order += "cpu_usage"
order += "cpu_temperature 2"
order += "memory"
order += "disk /"
order += "time"
disk "/" {
format = "disk: %used"
prefix_type = "custom"
}
cpu_usage {
format = "cpu: %usage"
max_threshold = 80
degraded_threshold = 60
}
cpu_temperature 0 {
format = "cpu1: %degrees"
max_threshold = 42
path = "/tmp/hwmon_cpu/temp3_input"
}
cpu_temperature 1 {
format = "cpu2: %degrees"
max_threshold = 42
path = "/tmp/hwmon_cpu/temp4_input"
}
cpu_temperature 2 {
format = "gpu: %degrees"
max_threshold = 44
path = "/sys/class/drm/card0/device/hwmon/hwmon0/temp1_input"
}
memory {
format = "ram: %used/%total"
unit = "auto"
decimals = 2
}
time {
format = "%a %Y-%m-%d %H:%M:%S"
}