dotfiles/.i3status.conf

43 lines
784 B
Plaintext

general {
output_format = "i3bar"
colors = true
interval = 5
}
order += "load"
order += "wireless wlan0"
order += "ethernet eth0"
order += "battery 0"
order += "disk /"
order += "tztime local"
wireless wlan0 {
format_up = "W: (%quality at %essid, %bitrate) %ip"
format_down = ""
}
ethernet eth0 {
# if you use %speed, i3status requires the cap_net_admin capability
format_up = "E: %ip (%speed)"
format_down = ""
}
battery 0 {
format = "%status %percentage %remaining %emptytime"
path = "/sys/class/power_supply/BAT%d/uevent"
low_threshold = 10
}
tztime local {
format = "%Y-%m-%d %H:%M:%S"
}
load {
format = "%1min %5min %15min"
}
disk "/" {
format = "df %free"
}