From 1f4ca42bca91633e4cd8439d8b4c84f779b97e4e Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Wed, 8 Mar 2023 20:35:46 +0100 Subject: Completely revamp i3bar using emoji --- i3/.i3status.conf | 63 ++++++++++++++++++++++++++++++++----------------------- 1 file changed, 37 insertions(+), 26 deletions(-) (limited to 'i3/.i3status.conf') 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" } -- cgit v1.2.3