Created
October 31, 2012 07:34
-
-
Save NicholasTD07/3985627 to your computer and use it in GitHub Desktop.
i3status config file
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
general { | |
colors = true | |
interval = 5 | |
} | |
#order += "ipv6" | |
order += "load" | |
order += "ethernet eth0" | |
order += "wireless wlan0" | |
order += "disk /" | |
order += "run_watch DHCP" | |
#order += "run_watch VPN" | |
order += "battery 0" | |
order += "time" | |
wireless wlan0 { | |
format_up = "Wifi: (%quality at %essid) %ip" | |
format_down = "Wifi: no" | |
} | |
ethernet eth0 { | |
# if you use %speed, i3status requires root privileges | |
format_up = "Eth: %ip (%speed)" | |
format_down = "Eth: no" | |
} | |
battery 0 { | |
format = "B: %status %percentage %remaining" | |
} | |
run_watch DHCP { | |
pidfile = "/var/run/dhclient*.pid" | |
} | |
run_watch VPN { | |
pidfile = "/var/run/vpnc/pid" | |
} | |
time { | |
format = "%Y-%m-%d %H:%M:%S" | |
} | |
load { | |
format = "Load: %1min" | |
} | |
disk "/" { | |
#format = "%free (or: %percentage_used used, %percentage_used_of_avail used of avail, %percentage_free free, %percentage_avail avail)" | |
format = "%free" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment