i3status: play around with the config

This commit is contained in:
Aminda Suomalainen 2019-11-11 16:38:42 +02:00
parent ab8ddef0c9
commit 33afbe8af6
No known key found for this signature in database
GPG Key ID: 0C207F07B2F32B67
1 changed files with 35 additions and 16 deletions

View File

@ -20,16 +20,23 @@ general {
color_degraded = "#cb4b16" color_degraded = "#cb4b16"
} }
order += "disk /" # Logicish: colour changing things at first (load is often red especially
order += "disk /home" # on boot + electron apps, audio mute changes colour to red (but audio
order += "ipv6" # still makes the most sense to me on the right next to clock).
order += "volume master" # 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 += "load"
order += "ipv6"
order += "wireless _first_" order += "wireless _first_"
order += "ethernet _first_" order += "ethernet _first_"
order += "battery all" order += "battery all"
order += "tztime utc" order += "volume master"
order += "tztime local" #order += "tztime utc"
order += "time"
#order += "tztime local"
# Load is first as the treshold may need the most modification here # Load is first as the treshold may need the most modification here
load { load {
@ -46,33 +53,43 @@ load {
} }
wireless _first_ { wireless _first_ {
#format_up = "W: (%quality at %essid) %frequency %ip" #format_up = "W: (%quality at %essid, %bitrate / %frequency) %ip"
format_up = "W:%quality %frequency" format_up = "W:%quality @ %essid (%frequency, %bitrate)"
format_down = "W:🢃" #format_up = "W:%quality %frequency"
#format_down = "W:🢃"
format_down = ""
format_quality = "%3d%s"
} }
ethernet _first_ { ethernet _first_ {
# if you use %speed, i3status requires root privileges # if you use %speed, i3status requires root privileges
#format_up = "E: %ip (%speed)" #format_up = "E: %ip (%speed)"
format_up = "E:🢁" #format_up = "E:🢁"
format_down = "E:🢃" format_up = "E:%speed"
#format_down = "E:🢃"
format_down = ""
} }
battery all { battery all {
# %remaining looks horrible especially with updating every second # %remaining looks horrible especially with updating every second
format = "🔌%status %percentage %remaining" format = "🔌%status %percentage %remaining"
format_down = "" format_down = ""
status_full = "🔌☻"
#status_unk = "?"
} }
tztime utc { tztime utc {
timezone = "UTC" timezone = "UTC"
# ISO 8601ish # 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. # 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 { volume master {
@ -82,8 +99,10 @@ volume master {
} }
ipv6 { ipv6 {
format_up = "IPv6:🢁" #format_up = "IPv6:🢁"
format_down = "IPv6:🢃" format_up = "6"
#format_down = "IPv6:🢃"
format_down = ""
} }
# %avail vs %free: https://github.com/i3/i3status/issues/349#issuecomment-506565599 # %avail vs %free: https://github.com/i3/i3status/issues/349#issuecomment-506565599