Created
October 18, 2017 21:44
-
-
Save ikavalio/f1b180f70b8317aed3691f61ac879b96 to your computer and use it in GitHub Desktop.
i3wm status configuration
This file contains hidden or 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
# ~/.config/i3status/config | |
general { | |
colors = true | |
interval = 5 | |
} | |
# order += "ipv6" | |
order += "disk /" | |
order += "wireless _first_" | |
order += "ethernet _first_" | |
order += "volume master" | |
order += "battery all" | |
order += "load" | |
order += "cpu_temperature 0" | |
order += "tztime local" | |
wireless _first_ { | |
format_up = "W: (%quality at %essid) %ip" | |
format_down = "W: down" | |
} | |
ethernet _first_ { | |
# if you use %speed, i3status requires root privileges | |
format_up = "E: %ip (%speed)" | |
format_down = "E: down" | |
} | |
volume master { | |
format = "♪: %volume" | |
format_muted = "♪: muted (%volume)" | |
device = "pulse:alsa_output.pci-0000_00_1b.0.analog-stereo" | |
} | |
battery all { | |
format = "%status %percentage %remaining" | |
format_down = "No battery" | |
status_chr = "⚡ CHR" | |
status_bat = "🔋 BAT" | |
status_unk = "? UNK" | |
status_full = "☻ FULL" | |
low_threshold = 10 | |
} | |
tztime local { | |
format = "%Y-%m-%d %H:%M:%S" | |
} | |
load { | |
format = "load: %1min, %5min, %15min" | |
} | |
cpu_temperature 0 { | |
format = "T: %degrees °C" | |
path = "/sys/class/thermal/thermal_zone0/temp" | |
} | |
disk "/" { | |
format = "%avail" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment