diff options
author | Ben Morrison <ben@gbmor.dev> | 2019-04-12 23:57:00 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2020-04-25 00:39:30 -0400 |
commit | 45d920c8ec323bf5d91de23bdb49f61c152b1301 (patch) | |
tree | 0bea7db6494a2803dfe18d02dbdeb2eec9811b9b /.config/i3status/config | |
download | dogfiles-45d920c8ec323bf5d91de23bdb49f61c152b1301.tar.gz |
Lots of unimportant changes happened before this
point, that I absolutely will never need a record of.
Diffstat (limited to '.config/i3status/config')
-rw-r--r-- | .config/i3status/config | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/.config/i3status/config b/.config/i3status/config new file mode 100644 index 0000000..d381c3e --- /dev/null +++ b/.config/i3status/config @@ -0,0 +1,57 @@ +# 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 += "disk /" +order += "wireless wlp3s0" +order += "ethernet enp0s25" +order += "ethernet tun0" +order += "battery all" +order += "load" +order += "cpu_temperature 0" +order += "tztime local" + +wireless wlp3s0 { + format_up = "W: (%quality at %essid) %ip" + format_down = "W: down" +} + +ethernet enp0s25 { + # if you use %speed, i3status requires root privileges + format_up = "E: %ip (%speed)" + format_down = "E: down" +} + +ethernet tun0 { + format_up = "V: %ip" + format_down = "V: down" +} + +battery all { + format = "%status %percentage %remaining" +} + +cpu_temperature 0 { + format = "T: %degrees °C" +} + +tztime local { + format = "%Y-%m-%d %H:%M:%S" +} + +load { + format = "L: %1min" +} + +disk "/" { + format = "%avail" +} |