Created
May 28, 2016 00:59
-
-
Save hkolbeck/9098ee76f00c6ce3ff170abb5bc36090 to your computer and use it in GitHub Desktop.
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
# 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 { | |
output_format = i3bar | |
colors = true | |
interval = 5 | |
} | |
order += "volume master" | |
order += "disk /" | |
order += "wireless wlp4s0" | |
order += "ethernet enp0s31f6" | |
order += "battery 0" | |
order += "battery 1" | |
order += "load" | |
order += "tztime UTC" | |
order += "tztime pdx" | |
wireless wlp4s0 { | |
format_up = "πΆ%essid %quality %ip" | |
format_down = "πΆΜΆ" | |
} | |
ethernet enp0s31f6 { | |
format_up = "π§%ip" | |
format_down = "π§ΜΈ" | |
} | |
battery 0 { | |
format = "%status %percentage %remaining %emptytime" | |
format_down = "No battery" | |
status_chr = "π" | |
status_bat = "π" | |
status_full = "π²" | |
path = "/sys/class/power_supply/BAT%d/uevent" | |
low_threshold = 10 | |
} | |
battery 1 { | |
format = "%status %percentage %remaining %emptytime" | |
format_down = "No battery" | |
status_chr = "π" | |
status_bat = "π" | |
status_full = "π²" | |
path = "/sys/class/power_supply/BAT%d/uevent" | |
low_threshold = 10 | |
} | |
tztime pdx { | |
format = "PDX %m-%d %H:%M:%S" | |
timezone = "America/Los_Angeles" | |
} | |
tztime UTC { | |
format = "UTC %m-%d %H:%M:%S" | |
timezone = "UTC" | |
} | |
volume master { | |
format = "π %volume" | |
format_muted = "π %volume" | |
device = "default" | |
mixer = "Master" | |
mixer_idx = 0 | |
} | |
load { | |
format = "1:%1min 5:%5min 15:%15min" | |
} | |
disk "/" { | |
format = "%avail" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment