-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi3status-wifi
60 lines (51 loc) · 962 Bytes
/
i3status-wifi
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"
interval = 1
separator = " | "
colors = true
color_good = "#00FF00"
color_bad = "#FF0000"
}
order += "wireless wlan0"
order += "ethernet _first_"
order += "cpu_temperature 0"
order += "cpu_temperature 1"
order += "cpu_usage"
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 = "/sys/class/hwmon/hwmon1/temp3_input"
}
cpu_temperature 1 {
format = "cpu2: %degrees"
max_threshold = 42
path = "/sys/class/hwmon/hwmon1/temp4_input"
}
memory {
format = "ram: %used/%total"
unit = "auto"
decimals = 2
}
wireless wlan0 {
format_up = "W: %ip (%essid, %quality)"
format_down = "W"
}
ethernet _first_ {
format_up = "E: %ip (%speed)"
format_down = "E"
}
time {
format = "%a %Y-%m-%d %H:%M:%S"
}