diff options
author | Matthew Lemon <y@yulqen.org> | 2023-08-22 04:51:43 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-08-22 04:51:43 +0100 |
commit | c9a505bfb926e58a8787dae9c9a6faca068be727 (patch) | |
tree | 96aa577253eff8f934ad5f0e544ab4473c505e33 /i3status_config | |
parent | 7c9638f7124ed24768c6b7409d4e8a0d68fa1538 (diff) |
Updates i3 status to move bar to bottom, etc
Diffstat (limited to 'i3status_config')
-rw-r--r-- | i3status_config | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/i3status_config b/i3status_config new file mode 100644 index 0000000..598079c --- /dev/null +++ b/i3status_config @@ -0,0 +1,54 @@ +# 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 +} + +# order += "ipv6" +order += "wireless _first_" +order += "ethernet _first_" +order += "battery all" +# order += "disk /" +# order += "load" +order += "memory" +order += "tztime local" + +wireless _first_ { + format_up = "W: (%quality at %essid) %ip" + format_down = "W: down" +} + +ethernet _first_ { + format_up = "E: %ip (%speed)" + format_down = "E: down" +} + +battery all { + format = "%status %percentage %remaining" +} + +# disk "/" { +# format = "%avail" +# } + +# load { +# format = "%1min" +# } + + +memory { + format = "%used | %available" + threshold_degraded = "1G" + format_degraded = "MEMORY < %available" +} + +tztime local { + format = "%Y-%m-%d %H:%M:%S" +} |