-
Notifications
You must be signed in to change notification settings - Fork 0
/
.i3status.conf
61 lines (51 loc) · 1.1 KB
/
.i3status.conf
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
general {
output_format = "i3bar"
markup = pango
interval = 5
color_good = '#2f343f'
color_degraded = '#ebcb8b'
color_bad = '#ba5e57'
}
order += "cpu_temperature 0"
order += "cpu_usage"
order += "memory"
order += "disk /"
order += "ipv6"
order += "wireless _first_"
order += "ethernet _first_"
order += "battery all"
order += "tztime local"
cpu_temperature 0 {
format = "Tea: %degrees °C"
#path = "/sys/devices/platform/coretemp.0/hwmon/hwmon4/temp1_input"
path = "/sys/class/thermal/thermal_zone4/temp"
}
cpu_usage {
format = "CPU %usage"
max_threshold = 75
}
memory {
format = "RAM %percentage_used"
threshold_degraded = "10%"
format_degraded = "MEMORY: %free"
}
disk "/" {
format = "HDD %percentage_used"
}
wireless _first_ {
format_up = "W (%quality at %essid, %bitrate) %ip"
format_down = "No WiFi"
}
ethernet _first_ {
format_up = "E %ip (%speed)"
format_down = "No Ethernet"
}
battery all {
last_full_capacity = true
format = "%status %percentage"
path = "/sys/class/power_supply/BAT%d/uevent"
low_threshold = 15
}
tztime local {
format = "%d-%m-%Y %H:%M"
}