Last active
December 28, 2015 13:19
-
-
Save cirrusUK/7507074 to your computer and use it in GitHub Desktop.
# i3status configuration file. from Dual DVI 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
| # 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 += "ipv6" | |
| order += "disk /" | |
| order += "disk /home" | |
| #order += "run_watch DHCP" | |
| order += "run_watch VPN" | |
| order += "wireless wlan0" | |
| order += "ethernet eth0" | |
| #order += "battery 0" | |
| order += "load" | |
| order += "tztime local" | |
| wireless wlan0 { | |
| format_up = "Wi-Fi: (%quality at %essid) %ip" | |
| format_down = "Wi-Fi: down" | |
| } | |
| ethernet eth0 { | |
| # if you use %speed, i3status requires root privileges | |
| format_up = "Eth0: %ip (%speed)" | |
| format_down = "E: 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" | |
| } | |
| load { | |
| format = "Load: %1min" | |
| } | |
| disk "/" { | |
| format = "%free" | |
| } | |
| disk "/home" { | |
| format = "/home: %free" | |
| } | |
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
| # 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 += "ipv6" | |
| order += "disk /" | |
| order += "disk /home" | |
| #order += "run_watch DHCP" | |
| #order += "run_watch VPN" | |
| order += "wireless enp2s0" | |
| order += "ethernet enp6s0" | |
| order += "battery 1" | |
| order += "load" | |
| order += "tztime local" | |
| wireless enp2s0 { | |
| format_up = "WiFi: (%quality at %essid) %ip" | |
| format_down = "Wi-Fi: down" | |
| } | |
| ethernet enp6s0 { | |
| # if you use %speed, i3status requires root privileges | |
| format_up = "E: %ip (%speed)" | |
| format_down = "Eth: down" | |
| } | |
| battery 1 { | |
| 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" | |
| } | |
| load { | |
| format = "Load:%1min" | |
| } | |
| disk "/" { | |
| format = "/: %free" | |
| } | |
| disk "/home" { | |
| format = "/home: %free" | |
| } | |
| order += "cpu_temperature 0" | |
| cpu_temperature 0 { | |
| format = "CPU: %degrees °C" | |
| max_threshold = 65 | |
| path = "/sys/class/thermal/thermal_zone0/temp" | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment