diff options
author | Alan Pearce | 2017-07-17 21:15:21 +0200 |
---|---|---|
committer | Alan Pearce | 2017-07-17 21:15:21 +0200 |
commit | b8965b3644797a3ff8d8382c89a25130f10855f8 (patch) | |
tree | e626a7d2ed985fe85cb4a9802f6acce40ebd794e /i3/.config/i3status/config | |
parent | d4637e2b2616ef9975f144f4fb77d2a8758ef075 (diff) | |
download | dotfiles-b8965b3644797a3ff8d8382c89a25130f10855f8.tar.lz dotfiles-b8965b3644797a3ff8d8382c89a25130f10855f8.tar.zst dotfiles-b8965b3644797a3ff8d8382c89a25130f10855f8.zip |
i3: Add initial configuration
Diffstat (limited to 'i3/.config/i3status/config')
-rw-r--r-- | i3/.config/i3status/config | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/i3/.config/i3status/config b/i3/.config/i3status/config new file mode 100644 index 0000000..be0a256 --- /dev/null +++ b/i3/.config/i3status/config @@ -0,0 +1,107 @@ +# 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 = "#538947" + color_degraded = "#f79a0e" + color_bad = "#ab4642" +} + +order += "disk /" +order += "disk /home" +order += "wireless _first_" +order += "ethernet _first_" +order += "ipv6" +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" +} + +wireless _first_ { + format_up = "W: %quality (%essid)" + format_down = "W" +} + +ethernet _first_ { + # if you use %speed, i3status requires root privileges + format_up = "E: (%speed)" + format_down = "E" +} + +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" +} + +cpu_temperature 0 { + format = "T: %degrees ºC" +} + +disk "/" { + prefix_type = "custom" + format = "/ %avail" + separator = false +} + +disk "/home" { + prefix_type = "custom" + format = "/h %avail" +} |