diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2024-08-02 22:13:57 -0400 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2024-08-02 22:13:57 -0400 |
commit | 3bad8f5d64170ab0ed582a37838e120bec87fb90 (patch) | |
tree | aebe3af0b9f2020533f2e8b7e9d1607923ee400c /i3/.config/i3status/config | |
parent | 9df360b86c31398348e66ef9c3dc77b2d84ff3bd (diff) | |
download | dotfiles-3bad8f5d64170ab0ed582a37838e120bec87fb90.tar.gz |
add x11 and i3 stuff
Diffstat (limited to 'i3/.config/i3status/config')
-rw-r--r-- | i3/.config/i3status/config | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/i3/.config/i3status/config b/i3/.config/i3status/config new file mode 100644 index 0000000..86504f1 --- /dev/null +++ b/i3/.config/i3status/config @@ -0,0 +1,56 @@ +general { + colors = true + interval = 5 + output_format = "i3bar" +} + +ethernet _first_ { + format_up = "eth %ip" + format_down = "" +} + +wireless _first_ { + format_up = "%essid %ip" + format_down = "" +} + +tztime local { + format = "%A %Y-%m-%d %H:%M" +} + +volume master { + format = "♪ %volume" + format_muted = "♪ MUTE" +} + +battery all { + format = "%status %percentage" + format_down = "" + low_threshold = 15 + integer_battery_capacity = true +} + +load { + format = "%1min" +} + +memory { + format = "%available" + threshold_degraded = "25%" + threshold_critical = "10%" +} + +disk "/" { + format = "/ %avail" + low_threshold = 10 + threshold_type = percentage_free +} + +order += "ethernet _first_" +order += "wireless _first_" +order += "disk /" +order += "load" +order += "memory" +order += "volume master" +order += "battery all" +order += "tztime local" |