Skip to content

Instantly share code, notes, and snippets.

@ultrabug
Created February 13, 2015 17:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ultrabug/37614f696cc7e4ca027f to your computer and use it in GitHub Desktop.
Save ultrabug/37614f696cc7e4ca027f to your computer and use it in GitHub Desktop.
i3status.conf
load {
format = "%5min"
}
general {
color_degraded = "#cb4b16"
output_format = "i3bar"
interval = "10"
color_bad = "#dc322f"
colors = "true"
color_good = "#859900"
color_separator = "#586e75"
}
battery 0 {
threshold_type = "time"
integer_battery_capacity = "true"
low_threshold = "15"
format = "%percentage"
}
disk /home {
format = "~ %free"
}
tztime la {
timezone = "America/Los_Angeles"
format = "LA %H:%M:%S"
}
tztime nyc {
timezone = "America/New_York"
format = "NYC %H:%M:%S"
}
ethernet eth0 {
format_up = "E: %ip"
format_down = ""
}
run_watch VPN {
pidfile = "/run/openvpn.pid"
format = "%title"
}
volume master {
device = "default"
mixer_idx = "0"
mixer = "Master"
format = "♪: %volume"
}
disk / {
format = "/ %free"
}
cpu_temperature 0 {
path = "/sys/devices/platform/coretemp.0/temp1_input"
format = "%degrees°C"
}
wireless wlp2s0 {
format_up = "W"
format_down = ""
}
run_watch DHCP {
pidfile = "/run/dhcpcd-*.pid"
format = "%title"
}
time {
format = "%d/%m/%y %H:%M:%S"
}
order += "disk /home"
order += "disk /"
order += "run_watch VPN"
order += "wireless wlp2s0"
order += "battery 0"
order += "load"
order += "volume master"
order += "tztime la"
order += "tztime nyc"
order += "time"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment