]> git.sur5r.net Git - i3/i3status/blobdiff - i3status.conf
default config: move disk info out of network info
[i3/i3status] / i3status.conf
index ef0a5cf08694cb28a1ea9c353ade71a3c8729d8d..ba81c3a593fc8d2b3a8f5dfe1dd8c0610c9c0eaa 100644 (file)
@@ -1,11 +1,53 @@
-wlan wlan0
-eth eth0
-wmii_path /mnt/wmii/rbar/
-time_format %d.%m.%Y %H:%M:%S
-battery_path /sys/class/power_supply/BAT0/uevent
-run_watch DHCP /var/run/dhclient*.pid
-run_watch VPN /var/run/vpnc/pid
-order run,wlan,eth,battery,load,time
-normcolors #000000 #333333
-color
-get_ethspeed
+# 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 += "wireless _first_"
+order += "ethernet _first_"
+order += "battery all"
+order += "disk /"
+order += "load"
+order += "memory"
+order += "tztime local"
+
+wireless _first_ {
+        format_up = "W: (%quality at %essid) %ip"
+        format_down = "W: down"
+}
+
+ethernet _first_ {
+        format_up = "E: %ip (%speed)"
+        format_down = "E: down"
+}
+
+battery all {
+        format = "%status %percentage %remaining"
+}
+
+disk "/" {
+        format = "%avail"
+}
+
+load {
+        format = "%1min"
+}
+
+memory {
+        format = "%used | %available"
+        threshold_degraded = "1G"
+        format_degraded = "MEMORY < %available"
+}
+
+tztime local {
+        format = "%Y-%m-%d %H:%M:%S"
+}