2022-05-27 21:07:07 +02:00
|
|
|
# i3status configuration file.
|
|
|
|
# see "man i3status" for documentation.
|
|
|
|
|
|
|
|
general {
|
|
|
|
interval = 2
|
|
|
|
colors = true
|
|
|
|
color_good = "#2ecc71"
|
|
|
|
color_degraded = "#f39c12"
|
|
|
|
color_bad = "#e74c3c"
|
|
|
|
}
|
|
|
|
|
|
|
|
read_file cmusctl.status {
|
|
|
|
format = "%content"
|
|
|
|
path = "/tmp/cmusctl.status"
|
|
|
|
}
|
|
|
|
|
|
|
|
run_watch Docker {
|
|
|
|
pidfile = "/run/docker.pid"
|
|
|
|
format = "D: %status"
|
|
|
|
}
|
|
|
|
|
|
|
|
wireless _first_ {
|
|
|
|
format_up = "W: (%quality at %essid, %bitrate) %ip"
|
|
|
|
format_down = "W: down"
|
|
|
|
}
|
|
|
|
|
|
|
|
ethernet _first_ {
|
|
|
|
# if you use %speed, i3status requires root privileges
|
|
|
|
format_up = "E: %ip (%speed)"
|
|
|
|
format_down = "E: down"
|
|
|
|
}
|
|
|
|
|
|
|
|
load {
|
|
|
|
format = "cpu: %1min, %5min, %15min"
|
|
|
|
}
|
|
|
|
|
|
|
|
memory {
|
2022-11-03 12:55:51 +01:00
|
|
|
format = "ram: %percentage_used / %total"
|
2022-05-27 21:07:07 +02:00
|
|
|
threshold_degraded = "10%"
|
2022-11-03 12:55:51 +01:00
|
|
|
format_degraded = "RAM: %free"
|
2022-05-27 21:07:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
disk "/" {
|
|
|
|
format = "R: %percentage_used"
|
|
|
|
low_threshold = 70
|
|
|
|
threshold_type = "percentage_used"
|
|
|
|
}
|
|
|
|
|
|
|
|
disk "/home" {
|
|
|
|
format = "H: %percentage_used"
|
|
|
|
low_threshold = 70
|
|
|
|
threshold_type = "percentage_used"
|
|
|
|
}
|
|
|
|
|
|
|
|
volume master {
|
2022-05-29 00:09:04 +02:00
|
|
|
format = "🔊 %volume"
|
|
|
|
format_muted = "🔇 %volume"
|
2022-05-27 21:07:07 +02:00
|
|
|
device = "default"
|
|
|
|
mixer = "Master"
|
|
|
|
mixer_idx = 0
|
|
|
|
}
|
|
|
|
|
2022-05-29 00:09:04 +02:00
|
|
|
battery 0 {
|
|
|
|
format = "%status %percentage"
|
|
|
|
format_down = "No battery"
|
|
|
|
status_chr = "⚡"
|
|
|
|
status_bat = "🪫"
|
|
|
|
status_full = "🔋"
|
|
|
|
status_unk = "?"
|
|
|
|
low_threshold = 20
|
|
|
|
last_full_capacity = true
|
|
|
|
integer_battery_capacity = true
|
|
|
|
path = "/sys/class/power_supply/BAT%d/uevent"
|
|
|
|
}
|
|
|
|
|
2022-05-27 21:07:07 +02:00
|
|
|
tztime local {
|
|
|
|
format = "%Y-%m-%d %H:%M:%S"
|
|
|
|
}
|