mirror of
https://github.com/nboughton/dotfiles
synced 2024-11-22 14:51:56 +01:00
57 lines
1.0 KiB
Plaintext
57 lines
1.0 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 = 2
|
|
separator = " "
|
|
}
|
|
|
|
order += "cpu_usage"
|
|
order += "memory"
|
|
order += "disk /"
|
|
order += "disk /home"
|
|
order += "battery all"
|
|
order += "volume master"
|
|
order += "tztime local"
|
|
|
|
battery all {
|
|
format = "%status %percentage %remaining"
|
|
status_chr = ""
|
|
status_bat = ""
|
|
status_unk = "?"
|
|
status_full = ""
|
|
}
|
|
|
|
disk "/" {
|
|
format = " %percentage_used"
|
|
}
|
|
|
|
disk "/home" {
|
|
format = " %percentage_used"
|
|
}
|
|
|
|
cpu_usage {
|
|
format = " %usage"
|
|
}
|
|
|
|
memory {
|
|
format = " %percentage_used"
|
|
threshold_degraded = "1G"
|
|
format_degraded = "MEMORY < %available"
|
|
}
|
|
|
|
volume master {
|
|
format = " %volume"
|
|
format_muted = " %volume"
|
|
}
|
|
|
|
tztime local {
|
|
format = "%a %d %b %H:%M"
|
|
}
|