diff options
author | Alan Pearce | 2019-10-02 16:55:23 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-02 16:55:23 +0200 |
commit | ec7f1357d16ff2f4aa7430a2940a0b9519018595 (patch) | |
tree | 28f4b022aff0ec38e7891ec677703a074dfd89f8 /user/i3/.config/i3status/config | |
parent | 8a65ab00b625139984aeb6c3a1a93f8bc9d3fc85 (diff) | |
parent | a261579a74bc3bf9ec673ef190f1ec4bb625b86b (diff) | |
download | nixfiles-ec7f1357d16ff2f4aa7430a2940a0b9519018595.tar.lz nixfiles-ec7f1357d16ff2f4aa7430a2940a0b9519018595.tar.zst nixfiles-ec7f1357d16ff2f4aa7430a2940a0b9519018595.zip |
Add 'user/' from commit 'a261579a74bc3bf9ec673ef190f1ec4bb625b86b'
git-subtree-dir: user git-subtree-mainline: 8a65ab00b625139984aeb6c3a1a93f8bc9d3fc85 git-subtree-split: a261579a74bc3bf9ec673ef190f1ec4bb625b86b
Diffstat (limited to 'user/i3/.config/i3status/config')
-rw-r--r-- | user/i3/.config/i3status/config | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/user/i3/.config/i3status/config b/user/i3/.config/i3status/config new file mode 100644 index 00000000..f27c24a4 --- /dev/null +++ b/user/i3/.config/i3status/config @@ -0,0 +1,112 @@ +# 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 = 10 + + color_good = "#b5bd68" + color_degraded = "#de935f" + color_bad = "#a3685a" +} + +order += "disk /" +order += "disk /home" +order += "ipv6" +order += "ethernet _first_" +order += "wireless _first_" +order += "battery all" +order += "battery 0" +order += "battery 1" +order += "load" +order += "cpu_temperature 0" +order += "volume master" +order += "tztime local" + +ipv6 { + format_up = "6" + format_down = "4" + separator = false + separator_block_width = 0 +} + +ethernet _first_ { + format_up = "E" + format_down = "E" + separator = false + separator_block_width = 0 +} + +wireless _first_ { + format_up = "W: %quality (%essid) " + format_down = "W" +} + +battery 0 { + integer_battery_capacity = true + + status_chr = "C" + status_bat = "D" + status_unk = "U" + status_full = "F" + + separator = false + + format = "%status %percentage" +} + +battery 1 { + integer_battery_capacity = true + + status_chr = "C" + status_bat = "D" + status_unk = "U" + status_full = "F" + + format = "%status %percentage" +} + +battery all { + integer_battery_capacity = false + hide_seconds = true + + separator = false + + format = "%status %remaining (%emptytime %consumption)" +} + +volume master { + device = "pulse" + format = "♪: %volume" + format_muted = "♪: 0%%" +} + +tztime local { + format = "%Y-%m-%d %H:%M" +} + +load { + format = "%1min %5min" +} + +cpu_temperature 0 { + format = "T: %degrees ºC" +} + +disk "/" { + prefix_type = "custom" + low_threshold = 5 + format = "/ %avail" + separator = false +} + +disk "/home" { + prefix_type = "custom" + low_threshold = 5 + format = "/h %avail" +} |