dotfiles/config/i3/i3status (view raw)
| 1 | # vim: ft=conf |
| 2 | general { |
| 3 | colors = false |
| 4 | interval = 1 |
| 5 | output_format = "i3bar" |
| 6 | } |
| 7 | |
| 8 | order += "volume master" |
| 9 | order += "wireless _first_" |
| 10 | #order += "battery all" |
| 11 | order += "tztime local" |
| 12 | |
| 13 | volume master { |
| 14 | format = " %volume" |
| 15 | format_muted = " %volume" |
| 16 | device = "default" |
| 17 | mixer = "Master" |
| 18 | mixer_idx = 2 |
| 19 | } |
| 20 | |
| 21 | wireless _first_ { |
| 22 | format_up = "%quality" |
| 23 | format_down = "W: down" |
| 24 | } |
| 25 | |
| 26 | battery all { |
| 27 | format = "%status %percentage" |
| 28 | last_full_capacity = true |
| 29 | format_down = "No battery" |
| 30 | status_chr = "" |
| 31 | status_bat = "" |
| 32 | status_unk = "? UNK" |
| 33 | status_full = "" |
| 34 | path = "/sys/class/power_supply/BAT%d/uevent" |
| 35 | low_threshold = 10 |
| 36 | } |
| 37 | |
| 38 | tztime local { |
| 39 | format = " %d %b %H:%M" |
| 40 | } |