Last active
September 2, 2023 12:02
-
-
Save SaBenBurra/30b2c4f83cf0b3c91a075397e5de307b to your computer and use it in GitHub Desktop.
my i3status config file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
general { | |
colors = true | |
interval = 1 | |
} | |
order += "tztime local" | |
order += "wireless _first_" | |
order += "ethernet _first_" | |
order += "battery all" | |
order += "disk /" | |
order += "memory" | |
wireless _first_ { | |
format_up = "🌐 %essid | %ip" | |
format_down = "W: down" | |
} | |
ethernet _first_ { | |
format_up = "E: %ip (%speed)" | |
format_down = "" | |
} | |
battery all { | |
status_chr = "⚡" | |
status_bat = "🔋" | |
status_unk = "🔋 Unknown" | |
} | |
disk "/" { | |
format = "%avail" | |
} | |
load { | |
format = "%1min" | |
} | |
memory { | |
format = "%used/%available" | |
threshold_degraded = "1G" | |
format_degraded = "MEMORY < %available" | |
} | |
tztime local { | |
format = "🕒 %H:%M:%S %d-%m-%Y" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment