mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-04-26 12:25:39 +00:00
47 lines
787 B
Plaintext
47 lines
787 B
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 += "disk /"
|
|
order += "ethernet eth0"
|
|
order += "memory"
|
|
order += "load"
|
|
order += "tztime local"
|
|
|
|
ethernet eth0 {
|
|
format_up = "E: %ip (%speed)"
|
|
format_down = "E: down"
|
|
}
|
|
|
|
memory {
|
|
format = "%used"
|
|
threshold_degraded = "10%"
|
|
format_degraded = "MEMORY: %free"
|
|
}
|
|
|
|
battery all {
|
|
format = "%status %percentage %remaining"
|
|
}
|
|
|
|
tztime local {
|
|
format = "%Y-%m-%d %H:%M:%S"
|
|
}
|
|
|
|
load {
|
|
format = "%1min"
|
|
}
|
|
|
|
disk "/" {
|
|
format = "%avail"
|
|
}
|
|
|