| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- # 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
- output_format = i3bar
- }
-
- order += "battery 0"
- order += "battery 1"
- order += "load"
- order += "cpu_usage"
- order += "disk /"
- order += "disk /home.sync"
- order += "disk /home"
- # order += "volume master"
- order += "tztime local"
-
- battery 0 {
- format = "%status%percentage"
- format_down = " ✕"
- status_unk = " "
- status_chr = " ↑"
- status_bat = " ↓"
- status_full = " "
- 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"
- format_down = " ✕"
- status_unk = " "
- status_chr = " ↑"
- status_bat = " ↓"
- status_full = " "
- path = "/sys/class/power_supply/BAT%d/uevent"
- low_threshold = 30
- threshold_type = percentage
- hide_seconds = true
- integer_battery_capacity = true
- }
-
- tztime local {
- format = "(w%V,d%u) %Y-%m-%d %H:%M"
- }
-
- disk "/" {
- format = "/:%avail"
- threshold_type = "gbytes_avail"
- low_threshold = 2
- }
-
- disk "/home.sync" {
- format = "s:%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
- }
|