-
Notifications
You must be signed in to change notification settings - Fork 0
/
i3status.conf
69 lines (60 loc) · 1.21 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
61
62
63
64
65
66
67
68
69
general {
output_format = 'i3bar'
colors = true
separator = ''
color_good = '#8800FF'
color_bad = '#FF0044'
color_degraded = '#FF8800'
interval = 1
}
order += 'memory'
order += 'disk /'
order += 'wireless _first_'
order += 'ethernet _first_'
order += 'ipv6'
order += 'tztime local'
order += 'tztime utc'
order += 'battery all'
ipv6 {
format_up = '%ip'
format_down = '[no IPv6]'
}
wireless _first_ {
format_up = '(%essid%quality) %ip'
format_down = '(wifi:⊘)'
}
ethernet _first_ {
format_up = '(%speed) %ip'
format_down = ''
}
battery all {
format = '[%status%percentage]'
integer_battery_capacity = true
format_down = ''
status_bat = '⌁'
status_chr = '⚡ '
status_full = '😻 '
status_unk = 'BAT⁉'
low_threshold = 40
threshold_type = 'percentage'
}
disk '/' {
format = ''
format_below_threshold = '[root %avail / %total]'
prefix_type = 'custom'
low_threshold = 20
threshold_type = 'percentage_free'
}
memory {
format = ''
threshold_degraded = "20%"
threshold_critical = "10%"
format_degraded = '[RAM %free / %total]'
}
tztime local {
format = '%A %B %d, %Y : %I:%M:%S-%P'
}
tztime utc {
format = '{%H:%M-UTC}'
timezone = UTC
}