65 lines
1.2 KiB
Plaintext
Executable File
65 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 = 1
|
|
}
|
|
|
|
order += "volume master"
|
|
order += "ethernet _first_"
|
|
order += "ipv6"
|
|
order += "disk /home"
|
|
order += "cpu_usage"
|
|
order += "cpu_temperature package"
|
|
order += "memory"
|
|
order += "tztime local"
|
|
|
|
volume master {
|
|
format = "vol: %volume"
|
|
format_muted = "muted (%volume)"
|
|
device = "default"
|
|
}
|
|
|
|
ipv6 {
|
|
format_up = "%ip"
|
|
format_down = ""
|
|
}
|
|
|
|
ethernet _first_ {
|
|
format_up = "%interface:%ip"
|
|
format_down = "IPv4: down"
|
|
}
|
|
|
|
battery all {
|
|
format = "%percentage"
|
|
}
|
|
|
|
disk "/home" {
|
|
format = "%avail"
|
|
}
|
|
|
|
cpu_usage {
|
|
format = "CPU: %usage"
|
|
}
|
|
|
|
cpu_temperature package {
|
|
format = "%degrees °C"
|
|
path = "/sys/class/hwmon/hwmon2/temp1_input"
|
|
}
|
|
|
|
memory {
|
|
format = "%used %percentage_used"
|
|
threshold_degraded = "1G"
|
|
format_degraded = "MEMORY < %available"
|
|
}
|
|
|
|
tztime local {
|
|
format = "%m-%d-%Y %H:%M:%S"
|
|
}
|