diff options
author | Camil Staps | 2023-03-08 20:35:46 +0100 |
---|---|---|
committer | Camil Staps | 2023-03-08 20:35:46 +0100 |
commit | 1f4ca42bca91633e4cd8439d8b4c84f779b97e4e (patch) | |
tree | d20edf940c3b48c0acf3b1f11845c9afc73b40f7 /i3/.i3status.conf | |
parent | i3: open htop with Mod+Settings (on Yoga laptop) (diff) |
Completely revamp i3bar using emoji
Diffstat (limited to 'i3/.i3status.conf')
-rw-r--r-- | i3/.i3status.conf | 63 |
1 files changed, 37 insertions, 26 deletions
diff --git a/i3/.i3status.conf b/i3/.i3status.conf index 44b2158..9c763f2 100644 --- a/i3/.i3status.conf +++ b/i3/.i3status.conf @@ -1,49 +1,60 @@ general { - colors = true - interval = 5 - output_format = "i3bar" + colors = true + color_degraded = "#ffa500" + color_bad = "#aa0000" + interval = 5 + output_format = "i3bar" } order += "volume master" order += "wireless wlp1s0" order += "battery 0" order += "cpu_usage" -order += "load" -order += "tztime utc" +order += "cpu_temperature 0" +order += "tztime amsterdam" volume master { - format = "βͺ: %volume" - format_muted = "Γβͺ: %volume" - device = "default" - mixer = "Master" - mixer_idx = 0 + format = "π %volume" + format_muted = "π %volume" + color_degraded = "#777777" + device = "default" + mixer = "Master" + mixer_idx = 0 } wireless wlp1s0 { - format_up = "%essid: %quality, %bitrate (%ip)" - format_down = "wlan0 down" + format_up = "π %essid: %quality, %bitrate" + format_down = "π© wlan down" } battery 0 { - format = "%status %percentage %remaining %consumption" - hide_seconds = true - status_chr = "β‘" - status_bat = "π" - status_full = "β¦" - status_unk = "?" - low_threshold = 30 - threshold_type = "percentage" + format = "%status %percentage %remaining %consumption" + hide_seconds = true + status_chr = "β‘" + status_bat = "π" + status_full = "π" + status_unk = "?" + low_threshold = 30 + threshold_type = "percentage" } cpu_usage { - format = "βοΈ %usage" + format = "β΅ %usage" + format_above_degraded_threshold = "π %usage" + format_above_threshold = "π %usage" + separator = false + degraded_threshold = 10 + max_threshold = 50 } -load { - max_threshold = "0.7" +cpu_temperature 0 { + format = "%degreesΒ°C" + format_above_threshold = "π₯΅ %degreesΒ°C" + path = "/sys/class/thermal/thermal_zone0/temp" + max_threshold = 50 } -tztime utc { - format = "%a %b %-d, %H:%M" - timezone = "Europe/Amsterdam" +tztime amsterdam { + format = "π
%a %b %-d, %H:%M" + timezone = "Europe/Amsterdam" } |