blob: 3e07fac5d3612d7cff59b92149da664e211ff582 (
plain)
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
|
general {
output_format = "i3bar"
colors = true
interval = 1
}
# Furthest to closest
order += "wireless wlp2s0"
order += "ethernet enp1s0"
order += "disk /home"
order += "volume master"
order += "battery 0"
order += "tztime local"
tztime local {
format = "%d/%m/%Y %H:%M"
}
wireless wlp2s0 {
format_up = "Connected: %ip@%essid"
format_down = ""
}
ethernet enp1s0 {
format_up = "Connection: %ip"
format_down = ""
}
disk /home {
format = "Pr0n drive: %free"
}
battery 0 {
format = "%status %percentage %emptytime"
format_down = ""
status_chr = " Charging"
status_bat = " Battery"
status_unk = "? UNK"
status_full = " Full"
path = "/sys/class/power_supply/BAT%d/uevent"
low_threshold = 10
}
volume master {
format = " %volume"
}
|