61 lines
1.2 KiB
Plaintext
Executable File
61 lines
1.2 KiB
Plaintext
Executable File
# 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 += "disk /home"
|
|
order += "wireless _first_"
|
|
# order += "ethernet _first_"
|
|
order += "battery all"
|
|
order += "load"
|
|
order += "run_watch VPN"
|
|
order += "cpu_usage"
|
|
# order += "cpu_temperature 0"
|
|
order += "tztime local"
|
|
|
|
wireless _first_ {
|
|
format_up = "W: (%quality at %essid) %ip"
|
|
format_down = "W: down"
|
|
}
|
|
|
|
ethernet _first_ {
|
|
# if you use %speed, i3status requires root privileges
|
|
format_up = "E: %ip (%speed)"
|
|
format_down = "E: down"
|
|
}
|
|
|
|
cpu_temperature 0 {
|
|
format = " T: %degrees °C "
|
|
path = "/sys/devices/platform/coretemp.0/temp1_input"
|
|
}
|
|
|
|
cpu_usage {
|
|
format = "CPU: %usage "
|
|
}
|
|
|
|
battery all {
|
|
format = "BAT: %status %percentage %remaining"
|
|
}
|
|
|
|
tztime local {
|
|
format = "%Y-%m-%d %H:%M:%S"
|
|
}
|
|
|
|
load {
|
|
format = "LOAD: %1min"
|
|
}
|
|
|
|
disk "/" {
|
|
format = "Avail: %avail"
|
|
}
|
|
|