Created
May 3, 2013 17:03
-
-
Save anton0xf/5511335 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
| general { | |
| output_format = "i3bar" | |
| colors = true | |
| interval = 1 | |
| } | |
| #order = "ipv6" | |
| order += "disk /home" | |
| #order += "disk /mnt/stuff" | |
| #order += "run_watch DHCP" | |
| #order += "run_watch VPN" | |
| #order += "wireless wlan0" | |
| #order += "ethernet eth0" | |
| #order += "battery 0" | |
| order += "cpu_temperature 0" | |
| order += "cpu_usage" | |
| order += "load" | |
| order += "volume pcm" | |
| order += "time" | |
| disk "/home" { | |
| format = "home: %avail" | |
| } | |
| disk "/mnt/stuff" { | |
| format = "stuff: %avail" | |
| } | |
| run_watch DHCP { | |
| pidfile = "/var/run/dhclient*.pid" | |
| } | |
| run_watch VPN { | |
| pidfile = "/var/run/vpnc/pid" | |
| } | |
| wireless wlan0 { | |
| format_up = "W: (%quality at %essid) %ip" | |
| format_down = "W: down" | |
| } | |
| ethernet eth0 { | |
| # if you use %speed, i3status requires root privileges | |
| format_up = "E: %ip (%speed)" | |
| format_down = "E: down" | |
| } | |
| battery 0 { | |
| format = "%status %percentage %remaining" | |
| } | |
| cpu_temperature 0 { | |
| format = "T: %degrees °C" | |
| path = "/sys/devices/platform/f71882fg.2560/temp1_input" | |
| } | |
| cpu_usage { | |
| format = "cpu: %usage" | |
| } | |
| load { | |
| format = "load: %1min %5min" | |
| } | |
| volume pcm { | |
| format = "pcm: %volume" | |
| device = "default" | |
| mixer = "PCM" | |
| mixer_idx = 0 | |
| } | |
| time { | |
| format = "%H:%M.%S %u %d.%m.%Y" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment