diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2019-04-15 14:42:55 -0500 |
---|---|---|
committer | Bobby Bingham <koorogi@koorogi.info> | 2019-04-15 14:42:55 -0500 |
commit | 0fc6c5a4fb8e4b0572544e42fcf986f1700f6bf0 (patch) | |
tree | 2483d38954e10a26d6ffac40cf76fd6062fc9047 /i3 | |
parent | ce6d4ba0d2879b85c9ab66ec40f919705d5b3ce1 (diff) |
i3status: change format of status bar
Diffstat (limited to 'i3')
-rw-r--r-- | i3/.config/i3status/config | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/i3/.config/i3status/config b/i3/.config/i3status/config index 5221830..c5f93aa 100644 --- a/i3/.config/i3status/config +++ b/i3/.config/i3status/config @@ -4,21 +4,23 @@ order += "cpu_temperature 0" order += "cpu_usage" order += "load" order += "tztime local" +order += "volume master" wireless wlan0 { - format_up = "%ip @ %essid" + format_up = "%ip @ %essid (%quality)" format_down = "W: down" } battery 1 { format = "%status %percentage %remaining" format_down = "No battery" + hide_seconds = true path = "/sys/class/power_supply/BAT%d/uevent" - low_threshold = 10 + low_threshold = 15 integer_battery_capacity = true - status_chr = "⚡" - status_bat = "🔋" - status_full = "🔌" + status_chr = "CHR" + status_bat = "BAT" + status_full = "FULL" } tztime local { @@ -34,3 +36,10 @@ cpu_temperature 0 { max_threshold = 65 } +volume master { + format = "♪: %volume" + format_muted = "♪: %volume [M]" + device = "default" + mixer = "Master" + mixer_idx = 0 +} |