12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # 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 += "battery 0"
- order += "load"
- order += "cpu_usage"
- order += "disk /home"
- order += "volume master"
- order += "tztime local"
-
- battery 0 {
- format = "%status %percentage %remaining"
- format_down = "፧B0"
- status_chr = "⚇C0"
- status_bat = "⚡B0"
- status_full = "☻F0"
- path = "/sys/class/power_supply/BAT%d/uevent"
- low_threshold = 10
- hide_seconds = true
- }
-
- tztime local {
- format = "%Y-%m-%d %H:%M"
- }
-
- disk "/home" {
- format = "~:%avail"
- }
-
- volume master {
- format = "♪%volume"
- format_muted = "♪---%%"
- device = "default"
- mixer = "Master"
- mixer_idx = 0
- }
|