59 lines
1.1 KiB
Text
59 lines
1.1 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 {
|
|
output_format = "i3bar"
|
|
colors = true
|
|
interval = 20
|
|
}
|
|
|
|
order += "ipv6"
|
|
order += "wireless _first_"
|
|
order += "disk /"
|
|
order += "disk /home"
|
|
order += "battery 1"
|
|
order += "cpu_usage"
|
|
#order += "load"
|
|
order += "tztime local"
|
|
|
|
wireless _first_ {
|
|
format_up = "W: (%quality at %essid) %ip"
|
|
format_down = "W: down"
|
|
}
|
|
|
|
battery 1 {
|
|
hide_seconds = true
|
|
integer_battery_capacity = true
|
|
low_threshold = 10
|
|
status_chr = "⚇"
|
|
status_bat = "⚡"
|
|
status_full = "☻"
|
|
format = "%status %percentage %remaining"
|
|
format_down = "No battery"
|
|
}
|
|
|
|
tztime local {
|
|
#format = "%Y-%m-%d %H:%M:%S"
|
|
format = "%H:%M:%S %d.%m.%Y"
|
|
}
|
|
|
|
cpu_usage {
|
|
format = "%usage"
|
|
}
|
|
|
|
load {
|
|
format = "%1min"
|
|
}
|
|
|
|
disk "/" {
|
|
format = "%avail"
|
|
}
|
|
|
|
disk "/home" {
|
|
format = "%avail"
|
|
}
|