76 lines
1.5 KiB
Text
76 lines
1.5 KiB
Text
# 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 {
|
|
colors = true
|
|
interval = 5
|
|
}
|
|
|
|
#order += "disk /"
|
|
order += "wireless _first_"
|
|
order += "ethernet _first_"
|
|
order += "cpu_usage"
|
|
order += "battery all"
|
|
order += "volume master"
|
|
order += "tztime local"
|
|
#order += "tztime utc"
|
|
|
|
cpu_usage {
|
|
format = " %usage"
|
|
max_threshold = 90
|
|
#format_above_threshold = " %usage"
|
|
degraded_threshold = 75
|
|
#format_above_degraded_threshold = " %usage"
|
|
}
|
|
|
|
wireless _first_ {
|
|
format_up = " (%quality at %essid) %ip"
|
|
format_down = " Down"
|
|
}
|
|
|
|
ethernet _first_ {
|
|
# if you use %speed, i3status requires root privileges
|
|
format_up = " %ip"
|
|
format_down = " Down"
|
|
}
|
|
|
|
battery all {
|
|
integer_battery_capacity = true
|
|
format = "%status %percentage"
|
|
format_down = ""
|
|
status_chr = ""
|
|
status_bat = ""
|
|
status_unk = ""
|
|
status_full = ""
|
|
path = "/sys/class/power_supply/BAT%d/uevent"
|
|
low_threshold = 25
|
|
threshold_type = percentage
|
|
}
|
|
|
|
volume master {
|
|
format = " %volume"
|
|
format_muted = " muted"
|
|
device = "pulse"
|
|
}
|
|
|
|
tztime local {
|
|
format = "%F %H:%M"
|
|
}
|
|
|
|
tztime utc {
|
|
format = "%H:%M"
|
|
timezone = "UTC"
|
|
}
|
|
|
|
load {
|
|
format = "%1min"
|
|
}
|
|
|
|
disk "/" {
|
|
format = "%avail"
|
|
}
|