1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- # 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 += "battery 1"
- order += "load"
- order += "cpu_usage"
- order += "disk /"
- 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 = 30
- threshold_type = percentage
- hide_seconds = true
- integer_battery_capacity = true
- }
-
- battery 1 {
- format = "%status %percentage %remaining"
- format_down = "፧B1"
- status_chr = "⚇C1"
- status_bat = "⚡B1"
- status_full = "☻F1"
- path = "/sys/class/power_supply/BAT%d/uevent"
- low_threshold = 5
- threshold_type = percentage
- hide_seconds = true
- integer_battery_capacity = true
- }
-
- tztime local {
- format = "%Y-%m-%d %H:%M"
- }
-
- disk "/" {
- format = "/:%avail"
- threshold_type = "gbytes_avail"
- low_threshold = 2
- }
-
- disk "/home" {
- format = "~:%avail"
- threshold_type = "gbytes_avail"
- low_threshold = 2
- }
-
- volume master {
- format = "♪%volume"
- format_muted = "♪--%%"
- device = "default"
- mixer = "Master"
- mixer_idx = 0
- }
|