From 33afbe8af6864fcb7d301b656b86eb2ccec61dde Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Mon, 11 Nov 2019 16:38:42 +0200 Subject: [PATCH] i3status: play around with the config --- conf/i3status/config | 51 ++++++++++++++++++++++++++++++-------------- 1 file changed, 35 insertions(+), 16 deletions(-) diff --git a/conf/i3status/config b/conf/i3status/config index 8e0afe8a..b3b8e65c 100644 --- a/conf/i3status/config +++ b/conf/i3status/config @@ -20,16 +20,23 @@ general { color_degraded = "#cb4b16" } -order += "disk /" -order += "disk /home" -order += "ipv6" -order += "volume master" +# Logicish: colour changing things at first (load is often red especially +# on boot + electron apps, audio mute changes colour to red (but audio +# still makes the most sense to me on the right next to clock). +# IPv6 (6), WLAN and Ethernet disappear when down and static single +# colour thingsa are on the right (clock, trays). + +#order += "disk /" +#order += "disk /home" order += "load" +order += "ipv6" order += "wireless _first_" order += "ethernet _first_" order += "battery all" -order += "tztime utc" -order += "tztime local" +order += "volume master" +#order += "tztime utc" +order += "time" +#order += "tztime local" # Load is first as the treshold may need the most modification here load { @@ -46,33 +53,43 @@ load { } wireless _first_ { - #format_up = "W: (%quality at %essid) %frequency %ip" - format_up = "W:%quality %frequency" - format_down = "W:🢃" + #format_up = "W: (%quality at %essid, %bitrate / %frequency) %ip" + format_up = "W:%quality @ %essid (%frequency, %bitrate)" + #format_up = "W:%quality %frequency" + #format_down = "W:🢃" + format_down = "" + format_quality = "%3d%s" } ethernet _first_ { # if you use %speed, i3status requires root privileges #format_up = "E: %ip (%speed)" - format_up = "E:🢁" - format_down = "E:🢃" + #format_up = "E:🢁" + format_up = "E:%speed" + #format_down = "E:🢃" + format_down = "" } battery all { # %remaining looks horrible especially with updating every second format = "🔌%status %percentage %remaining" format_down = "" + status_full = "🔌☻" + #status_unk = "?" } tztime utc { timezone = "UTC" # ISO 8601ish - format = "%Z: %Y-%m-%d %H:%M:%S(%z)" + format = "%Z: %Y-%m-%d %H:%M:%S%z" } -tztime local { +#tztime local { +time { # Finnishish formatting. - format = "%Z: %A %d. %B %Y, %H.%M.%S(%z)" + #format = "%Z: %A %d. %B %Y, %H.%M.%S(%z)" + # I guess ISO 8601 (+ mix from UTC) just makes the most sense to me + format = "%Z: %F %H.%M.%S%z" } volume master { @@ -82,8 +99,10 @@ volume master { } ipv6 { - format_up = "IPv6:🢁" - format_down = "IPv6:🢃" + #format_up = "IPv6:🢁" + format_up = "6" + #format_down = "IPv6:🢃" + format_down = "" } # %avail vs %free: https://github.com/i3/i3status/issues/349#issuecomment-506565599