78 lines
1.5 KiB
Plaintext
78 lines
1.5 KiB
Plaintext
# i3status configuration file.
|
|
# see "man i3status" for documentation.
|
|
|
|
# It is important that this file is edited as UTF-8.
|
|
# The following line should contain a sharp s:
|
|
# ß
|
|
# If the above line is not correctly displayed, fix your editor first!
|
|
|
|
general {
|
|
output_format = "i3bar"
|
|
colors = true
|
|
interval = 5
|
|
color_good = "#A5DF00"
|
|
color_bad = "#6E6E6E"
|
|
color_degraded = "#FF4000"
|
|
}
|
|
|
|
#order += "ipv6"
|
|
#order += "run_watch DHCP"
|
|
order += "run_watch VPN"
|
|
order += "ethernet _first_"
|
|
order += "wireless _first_"
|
|
order += "load"
|
|
order += "disk /"
|
|
order += "battery all"
|
|
order += "volume master"
|
|
order += "tztime local"
|
|
|
|
wireless _first_ {
|
|
format_up = " %essid (%quality) %ip "
|
|
format_down = " "
|
|
}
|
|
|
|
ethernet _first_ {
|
|
format_up = " %ip (%speed) "
|
|
format_down = " "
|
|
}
|
|
|
|
battery all {
|
|
format = " %status %percentage (%remaining) "
|
|
last_full_capacity = true
|
|
integer_battery_capacity = true
|
|
status_chr = " "
|
|
status_bat = " "
|
|
status_full = " "
|
|
threshold_type = percentage
|
|
low_threshold = 10
|
|
}
|
|
|
|
run_watch DHCP {
|
|
pidfile = "/var/run/dhclient*.pid"
|
|
format_down = " dhcp "
|
|
}
|
|
|
|
run_watch VPN {
|
|
pidfile = "/var/run/vpnc.pid"
|
|
format = " "
|
|
}
|
|
|
|
tztime local {
|
|
format = " %d.%m.%Y %H:%M "
|
|
}
|
|
|
|
load {
|
|
format = " %1min %5min "
|
|
}
|
|
|
|
disk "/" {
|
|
format = " %avail "
|
|
}
|
|
|
|
volume master {
|
|
format = " %volume "
|
|
device = "default"
|
|
mixer = "Master"
|
|
mixer_idx = 0
|
|
}
|