diff options
| author | 0scar <qgt268@alumni.ku.dk> | 2020-08-09 16:55:14 +0000 |
|---|---|---|
| committer | 0scar <qgt268@alumni.ku.dk> | 2020-08-11 12:50:36 +0000 |
| commit | 67a3c6d4264802cb0c506234b24d4c80fa52a76c (patch) | |
| tree | 5a2f44cbec52bd5ecbc9b63768186154370296c7 /.config/i3status | |
Initial
Diffstat (limited to '.config/i3status')
| -rw-r--r-- | .config/i3status/config | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/.config/i3status/config b/.config/i3status/config new file mode 100644 index 0000000..4990d5e --- /dev/null +++ b/.config/i3status/config @@ -0,0 +1,83 @@ +# 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 { + output_format = i3bar + colors = true + interval = 5 + separator = " / " + color_good = "#68fc5a" + color_bad = "#fc785a" + color_degraded = "#fcf45a" +} + +order += "volume master" +order += "disk /" +order += "disk /home" +order += "wireless _first_" +order += "ethernet enp0s31f6" +order += "battery all" +order += "cpu_usage" +order += "cpu_temperature all" +order += "time" + +volume master { + format = "墳 %volume" + format_muted = "奄 %volume" + device = "default" + mixer = "Master" + mixer_idx = 0 +} + +wireless _first_ { + # if you use %speed, i3status requires root privileges + format_up = " " # %ip (%speed)" + format_down = "" # "E: down" +} + +ethernet enp0s31f6 { + # if you use %speed, i3status requires root privileges + format_up = " %ip" # %ip (%speed)" + format_down = "" # "E: down" +} + +battery all { + format = "%status %percentage" # %remaining" + hide_seconds = true + integer_battery_capacity = true + status_unk = "" + status_chr = "" # "[]" + status_bat = "" # "[]" + status_full = "" # "" + format_down = "" + last_full_capacity = true + low_threshold = 35 + threshold_type = percent +} + +time { + format = "%Y-%m-%d %H:%M" +} + +cpu_temperature all { + format = " %degrees°" + max_threshold = 50 +} + +cpu_usage { + format = " %usage" + max_threshold = 50 +} + +disk "/" { + format = " [%avail]" +} + +disk "/home" { + format = " [%avail]" +} |
