forked from aaronlevy/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 2
/
_i3status.conf
49 lines (40 loc) · 920 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
}
order += "disk /"
order += "battery 0"
order += "wireless wlan0"
order += "load"
order += "cpu_usage"
order += "time"
wireless wlan0 {
format_up = "W: (%quality at %essid, %bitrate) %ip"
format_down = "W: (%quality at %essid, %bitrate) %ip"
}
ethernet p5p1 {
# if you use %speed, i3status requires the cap_net_admin capability
format_up = "E: %ip (%speed)"
format_down = "E: down"
}
battery 0 {
format = "%status %percentage %remaining %emptytime"
path = "/sys/class/power_supply/BATX/uevent"
low_threshold = 10
}
run_watch DHCP {
pidfile = "/var/run/dhclient*.pid"
}
time {
format = "%Y-%m-%d %H:%M:%S"
}
load {
format = "%5min"
}
cpu_usage {
format = "%usage"
}
disk "/" {
format = "%used / %free (%avail) / %total"
}