65 lines
1.3 KiB
Plaintext
65 lines
1.3 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 {
|
|
colors = true
|
|
interval = 5
|
|
}
|
|
|
|
order += "wireless _first_"
|
|
order += "ethernet _first_"
|
|
order += "battery 0"
|
|
order += "battery 1"
|
|
order += "disk /"
|
|
order += "load"
|
|
order += "memory"
|
|
order += "tztime local"
|
|
|
|
wireless _first_ {
|
|
format_up = "W: (%quality at %essid) %ip"
|
|
format_down = "W: down"
|
|
}
|
|
|
|
ethernet _first_ {
|
|
format_up = "E: %ip (%speed)"
|
|
format_down = "E: down"
|
|
}
|
|
|
|
battery 0 {
|
|
format = "B0 %percentage"
|
|
hide_seconds = true
|
|
path = /sys/class/power_supply/BAT0/uevent
|
|
status_unk = BAT0
|
|
status_bat = BAT0
|
|
}
|
|
battery 1 {
|
|
format = "B1 %percentage"
|
|
hide_seconds = true
|
|
path = /sys/class/power_supply/BAT1/uevent
|
|
status_unk = BAT1
|
|
status_bat = BAT1
|
|
}
|
|
|
|
disk "/" {
|
|
format = "%avail"
|
|
}
|
|
|
|
load {
|
|
format = "CPU %1min"
|
|
}
|
|
|
|
memory {
|
|
format = "MEM %available"
|
|
threshold_degraded = "1G"
|
|
format_degraded = "MEMORY < %available"
|
|
}
|
|
|
|
tztime local {
|
|
format = "%Y-%m-%d %H:%M:%S"
|
|
}
|