This repository has been archived on 2025-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
i3status/config
2025-04-11 23:37:57 -04:00

56 lines
899 B
Plaintext

general {
output_format = "i3bar"
colors = true
color_good = "#00FF00"
color_degraded = "#FFFF00"
color_bad = "#FF0000"
}
### Order of displayed widgets
order += "cpu_usage"
order += "cpu_temperature 0"
order += "disk /"
order += "battery all"
order += "volume master"
order += "tztime local"
### CPU usage in %
cpu_usage {
format = "  %usage "
}
### CPU temperature in °C
cpu_temperature 0 {
format = "  %degrees °C "
}
### Available storage
disk "/" {
format = " 󰋊 %avail "
}
battery all {
path=/sys/class/power_supply/%d/uevent
format = " 󰄌 %percentage %remaining "
last_full_capacity = true
threshold_type=percentage
low_threshold=10
}
### Volume in %
volume master {
format = "  %volume "
device = "default"
mixer = "Master"
mixer_idx = 0
}
### Time (weekday month day year - hh:mm am/pm)
tztime local {
format = " %D %l:%M%p "
}