config/~/i3wm/i3status.conf

25 lines
328 B
Plaintext
Raw Permalink Normal View History

2021-11-12 07:12:04 +03:00
# ~/.i3status.conf
2021-11-12 06:34:49 +03:00
general {
2021-11-12 07:12:04 +03:00
output_format = "i3bar"
interval = 5
colors = true
2021-11-12 06:34:49 +03:00
}
#order += "battery all"
order += "tztime local"
order += "volume master"
battery all {
2021-11-12 07:12:04 +03:00
format = "%status %percentage %remaining"
2021-11-12 06:34:49 +03:00
}
volume master {
2021-11-12 07:12:04 +03:00
format = "vol: %volume"
2021-11-12 06:34:49 +03:00
}
tztime local {
2021-11-12 07:12:04 +03:00
format = "%Y-%m-%d %H:%M"
2021-11-12 06:34:49 +03:00
}
2021-11-12 07:12:04 +03:00