diff options
author | Guangxiong Lin <[email protected]> | 2021-12-19 22:09:13 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2021-12-19 22:09:13 +0800 |
commit | a347622f9f683ec69c529bc403e56eeec68d1b36 (patch) | |
tree | c675f01343620d1786ee57a4ac403df1e213bbff /.config/i3status | |
parent | 9d7d9138721c2c4567f8ff5e0d03198b087f809c (diff) | |
download | dotfiles-a347622f9f683ec69c529bc403e56eeec68d1b36.tar.gz dotfiles-a347622f9f683ec69c529bc403e56eeec68d1b36.tar.bz2 dotfiles-a347622f9f683ec69c529bc403e56eeec68d1b36.zip |
Update i3wm config
Diffstat (limited to '.config/i3status')
-rw-r--r-- | .config/i3status/config | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/.config/i3status/config b/.config/i3status/config new file mode 100644 index 0000000..f503b7a --- /dev/null +++ b/.config/i3status/config @@ -0,0 +1,53 @@ +# 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 = "%a %d %b %H:%M" +} |