diff options
author | Matthew Lemon <y@yulqen.org> | 2024-12-21 05:09:12 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-12-21 05:09:12 +0000 |
commit | 557a84f42c2ed20dbba1ee16b79733118e8e39da (patch) | |
tree | db0184c85db017b977c6115420c82d6d6bbdc00e /i3status_config_x1 | |
parent | 51193a6e6d4c36317233e0d9b28fe859d6b3829b (diff) |
Adds some x1 specific files as we equalise dotfiles
Diffstat (limited to '')
-rw-r--r-- | i3status_config_x1 | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/i3status_config_x1 b/i3status_config_x1 new file mode 100644 index 0000000..af41cb1 --- /dev/null +++ b/i3status_config_x1 @@ -0,0 +1,56 @@ +# 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" +#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" +} |