diff options
author | dx <aryadevchavali1@gmail.com> | 2020-04-15 04:37:52 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-04-15 04:37:52 +0100 |
commit | c7917c27b7a126fe1aebe5761aba38486c81b78a (patch) | |
tree | f5c244c2ad4fdc49db222f694dd2007d72143fa7 | |
parent | 3ff2beb12253b6d8dec7d048f7a2a31db3e51c8e (diff) | |
download | dotfiles-c7917c27b7a126fe1aebe5761aba38486c81b78a.tar.gz dotfiles-c7917c27b7a126fe1aebe5761aba38486c81b78a.tar.bz2 dotfiles-c7917c27b7a126fe1aebe5761aba38486c81b78a.zip |
~switched to py3status for all my status bar needs
A lot more flexible, easy to use and nicer to look at.
-rw-r--r-- | i3/i3status.conf | 66 |
1 files changed, 42 insertions, 24 deletions
diff --git a/i3/i3status.conf b/i3/i3status.conf index f0da4ed..4699982 100644 --- a/i3/i3status.conf +++ b/i3/i3status.conf @@ -6,43 +6,61 @@ general { # Furthest to closest -order += "wireless wlp2s0" -order += "ethernet enp1s0" -order += "disk /home" +order += "frame extra" +order += "online_status" order += "volume master" -order += "battery 0" +order += "battery_level 0" order += "tztime local" -tztime local { - format = "%d/%m/%Y %H:%M" + +frame extra { + format = "{output} {button}" + open = False + + mpd_status { + state_pause = "" + state_play = "" + state_stop = "" + format = "MPD: [{state}]{title}" + } + + wireless wlp2s0 { + format_up = "Connected: %ip@%essid" + format_down = "" + } + + ethernet enp1s0 { + format_up = "Connection: %ip" + format_down = "" + } + + uptime { + format = "Uptime: {hours}hr {minutes}m" + } + + diskdata { + format = "Memes: {free} GB" + } } -wireless wlp2s0 { - format_up = "Connected: %ip@%essid" - format_down = "" +online_status { + format = "{icon}" } -ethernet enp1s0 { - format_up = "Connection: %ip" - format_down = "" +volume master { + format = " %volume" + format_muted = " 0" } -disk /home { - format = "Pr0n drive: %free" +tztime local { + format = "%d/%m/%Y %H:%M" } -battery 0 { - format = "%status %percentage %remaining (%consumption)" - format_down = "" - status_chr = " Charging" - status_bat = " Battery" - status_unk = "? UNK" - status_full = " Full" +battery_level 0 { + format = "{icon}{percent}%" path = "/sys/class/power_supply/BAT%d/uevent" + hide_seconds = true threshold_type = percentage low_threshold = 10 } -volume master { - format = " %volume" -} |