40 lines
781 B
Text
40 lines
781 B
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 = false
|
|
interval = 5
|
|
}
|
|
|
|
order += "disk /"
|
|
order += "ethernet _first_"
|
|
order += "battery 0"
|
|
order += "load"
|
|
order += "tztime local"
|
|
|
|
ethernet _first_ {
|
|
# if you use %speed, i3status requires root privileges
|
|
format_up = "Ethernet: %ip (%speed)"
|
|
format_down = "Ethernet: down"
|
|
}
|
|
|
|
battery 0 {
|
|
format = "%status %percentage %remaining"
|
|
}
|
|
|
|
tztime local {
|
|
format = "%Y-%m-%d %H:%M:%S"
|
|
}
|
|
|
|
load {
|
|
format = "%1min"
|
|
}
|
|
|
|
disk "/" {
|
|
format = "HD: %avail"
|
|
}
|