-
Notifications
You must be signed in to change notification settings - Fork 0
/
i3status
52 lines (43 loc) · 919 Bytes
/
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
50
51
52
general {
output_format = "i3bar"
colors = true
interval = 1
}
order += "volume master"
order += "disk /"
order += "wireless _first_"
order += "ethernet _first_"
order += "battery all"
order += "load"
order += "tztime local"
order += "tztime utc"
disk "/" {
format = "%free"
}
wireless _first_ {
format_up = "W: (%quality at %essid, %bitrate) %ip"
format_down = ""
}
ethernet _first_ {
# if you use %speed, i3status requires the cap_net_admin capability
format_up = "E: %ip (%speed)"
format_down = ""
}
battery all {
format = "%status %percentage %remaining"
}
tztime local {
format = "%Y-%m-%d %H:%M:%S"
}
tztime utc {
format = "%Y-%m-%d %H:%M:%S %Z"
timezone = "UTC"
}
load {
format = "%5min"
}
volume master {
format = "V: %volume"
format_muted = "V: %volume (muted)"
device = "pulse"
}