Created
August 25, 2016 09:22
-
-
Save mcuadros/419e8178a32252555872de4ce9517349 to your computer and use it in GitHub Desktop.
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
# i3status configuration file. | |
# see "man i3status" for documentation. | |
# It is important that this file is edited as UTF-8. | |
# The following line should contain a sharp s: | |
# ß | |
# If the above line is not correctly displayed, fix your editor first! | |
general { | |
colors = true | |
interval = 5 | |
color_good = "#6CC72C" | |
color_degraded = "#FFEE99" | |
} | |
order += "load" | |
order += "cpu_temperature 0" | |
order += "wireless _first_" | |
order += "volume master" | |
order += "battery 0" | |
order += "tztime local" | |
wireless _first_ { | |
format_up = "wifi➔ %essid (%quality)" | |
format_down = "wifi down" | |
} | |
volume master { | |
format = "♪➔ %volume" | |
format_muted = "♪➔ muted (%volume)" | |
device = "default" | |
mixer = "Master" | |
mixer_idx = 0 | |
} | |
battery 0 { | |
format = "%status➔ %percentage (%remaining)" | |
status_bat = "batery" | |
status_chr = "charging" | |
status_full = "full" | |
} | |
tztime local { | |
format = "%H:%M" | |
} | |
cpu_temperature 0 { | |
format = "temp➔ %degrees°C" | |
} | |
load { | |
format = "load➔ %1min, %5min, %15min" | |
} | |
disk "/" { | |
format = "%avail" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment