Skip to content

Instantly share code, notes, and snippets.

@JGrossholtz
Created November 20, 2015 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JGrossholtz/651ad5029b88ecbc74be to your computer and use it in GitHub Desktop.
Save JGrossholtz/651ad5029b88ecbc74be to your computer and use it in GitHub Desktop.
# My basic 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
}
order += "disk /"
order += "wireless wlan0"
order += "ethernet eth0"
order += "battery 0"
order += "load"
order += "tztime paris"
order += "tztime local"
wireless wlan0 {
format_up = "Wlan0: (%quality at %essid) %ip"
format_down = "Wlan0: down"
}
ethernet eth0 {
# if you use %speed, i3status requires root privileges
format_up = "eth0: %ip (%speed)"
format_down = "eth0: down"
}
battery 0 {
format = "%status %percentage %remaining"
}
run_watch DHCP {
pidfile = "/var/run/dhclient*.pid"
}
run_watch VPN {
pidfile = "/var/run/vpnc/pid"
}
tztime local {
format = "%Y-%m-%d %H:%M:%S"
}
tztime paris {
format = "Paris:%H:%M:%S"
timezone = "Europe/Paris"
}
load {
format = "cpu:%1min"
}
disk "/" {
format = "HDD:%avail"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment