-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathi3status.conf
49 lines (41 loc) · 832 Bytes
/
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
general {
output_format = "i3bar"
colors = true
interval = 5
separator = " "
}
order += "volume master"
order += "wireless wlp1s0"
order += "run_watch VPN"
order += "battery 0"
order += "load"
order += "tztime local"
order += "tztime utc"
volume master {
# format = " ♪: %volume "
device = "default"
mixer = "Master"
mixer_idx = 0
}
wireless wlp1s0 {
format_up = "W: %essid %ip"
format_down = "W: down"
}
battery 0 {
format = "%status %percentage %remaining"
path = "/sys/class/power_supply/BAT%d/uevent"
low_threshold = 10
}
run_watch VPN {
pidfile = "/sys/class/net/tun0/dev_id"
}
tztime local {
format = "%Y-%m-%d C:%I:%M:%S"
}
tztime utc {
format = "U:%I:%M:%S"
timezone = "Etc/UTC"
}
load {
format = "CPU: %1min"
}