mirror of
https://github.com/pgrondek/config.git
synced 2024-11-22 12:03:43 +00:00
61 lines
1.1 KiB
Plaintext
61 lines
1.1 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 = 5
|
|
}
|
|
|
|
order += "wireless wlo1"
|
|
order += "battery 0"
|
|
order += "volume master"
|
|
order += "cpu_usage"
|
|
order += "cpu_temperature cpu"
|
|
order += "load"
|
|
order += "tztime local"
|
|
|
|
wireless wlo1 {
|
|
format_up = "Wi-Fi: %essid (%quality)"
|
|
format_down = ""
|
|
}
|
|
|
|
tztime local {
|
|
format = "%Y-%m-%d %H:%M:%S"
|
|
}
|
|
|
|
cpu_usage {
|
|
format = "CPU: %usage"
|
|
separator = false
|
|
}
|
|
|
|
cpu_temperature cpu {
|
|
format = "%degrees°C"
|
|
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon*/temp1_input"
|
|
max_threshold = 95
|
|
separator = false
|
|
}
|
|
|
|
load {
|
|
format = "↑ %1min"
|
|
}
|
|
|
|
battery 0 {
|
|
format = "%status %percentage"
|
|
format_down = ""
|
|
status_chr = "⚡"
|
|
status_bat = "🔋"
|
|
status_unk = "?"
|
|
status_full = "☻ "
|
|
low_threshold = 20
|
|
}
|
|
|
|
volume master {
|
|
format = "🔈: %volume"
|
|
format_muted = "🔇"
|
|
}
|