Skip to content

Instantly share code, notes, and snippets.

@hkolbeck
Created May 28, 2016 00:59
Show Gist options
  • Save hkolbeck/9098ee76f00c6ce3ff170abb5bc36090 to your computer and use it in GitHub Desktop.
Save hkolbeck/9098ee76f00c6ce3ff170abb5bc36090 to your computer and use it in GitHub Desktop.
# 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