-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.i3status
49 lines (42 loc) · 1.04 KB
/
config.i3status
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
general {
output_format = "i3bar"
colors = true
interval = 5
}
order += "disk /"
order += "disk /home"
order += "disk /var"
order += "wireless _first_"
order += "volume master"
order += "tztime local"
wireless _first_ {
format_up = "%essid:%quality, %bitrate %ip"
format_down = "W: down"
}
volume master {
format = "♪: %volume"
format_muted = "♪: muted (%volume)"
device = "pulse:alsa_output.pci-0000_00_1f.3.analog-stereo"
}
tztime local {
format = "%time"
format_time = "%b %d %H:%M %p %Z"
}
disk "/" {
color_good = "#FF0000"
format = "/ %percentage_avail avail"
low_threshold = "10"
threshold_type = "percentage_free"
}
disk "/home" {
color_good = "#FF0000"
format = "/home %percentage_avail avail"
low_threshold = "10"
threshold_type = "percentage_free"
}
disk "/var" {
color_good = "#FF0000"
format = "/var %percentage_avail avail"
low_threshold = "10"
threshold_type = "percentage_free"
}