home · contact · privacy
Extend i3status conf for w530.
authorChristian Heller <c.heller@plomlompom.de>
Sat, 15 Apr 2017 23:56:57 +0000 (01:56 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 15 Apr 2017 23:56:57 +0000 (01:56 +0200)
dotfiles/user/thinkpad/W530/i3status.conf

index c5c90a7a2c9517b1aa5e4a77065d463f909fb224..db87c5ad67c16d32fb720912466a63b0768e545c 100644 (file)
@@ -12,57 +12,77 @@ order += "disk /home"
 order += "wireless wlp3s0"
 order += "ethernet enp0s25"
 order += "battery 0"
+order += "cpu_usage"
+order += "load"
 order += "cpu_temperature 0"
 order += "cpu_temperature 1"
-order += "cpu_temperature 2"
-order += "cpu_temperature 3"
-order += "load"
 order += "time"
+order += "volume master"
 
 # How much space is left in / ?
 disk "/" {
-    format = "%free"
+  format = "/: %avail available of %total"
+  separator_block_width = 10
 }
 
 # How much space is left in /home ?
 disk "/home" {
-    format = "%free"
+  format = "/home: %avail available of %total"
+  separator_block_width = 40
 }
 
 
 # WLAN status: show IP and connection quality or "down".
 wireless wlp3s0 {
-        format_up = "W: (%quality at %essid) %ip"
-        format_down = "W: down"
+  format_up = "w: (%quality at %essid) %ip"
+  format_down = "w: down"
+  separator_block_width = 10
 }
 
 # Ethernet status: show IP or "down".
 ethernet enp0s25 {
-        format_up = "E: %ip"
-        format_down = "E: down"
+  format_up = "e: %ip"
+  format_down = "e: down"
+  separator_block_width = 40
 }
 
 # Battery status: show FULL/CHARGING/BATTERY, storage, time left.
 battery 0 {
-        format = "%status %percentage %remaining"
+  format = "b: %status %percentage %remaining"
+  separator_block_width = 40
 }
 
-# Show CPU temperature in degrees of celsius.
-cpu_temperature 0 {
-        format = "T: %degrees °C"
-}
-cpu_temperature 1 {
-        format = "T: %degrees °C"
+# Show CPU usage.
+cpu_usage {
+  format = "cpu: %usage"
+  separator_block_width = 10
 }
 
 # Show system load during last 1/5/15 minutes.
 load {
-    format = "L: %1min %5min %15min"
+  format = "%1min %5min %15min"
+  separator_block_width = 40
+}
+
+# Show CPU temperature in degrees of celsius.
+cpu_temperature 0 {
+  format = "%degrees °C"
+  separator_block_width = 10
+}
+cpu_temperature 1 {
+  format = "%degrees °C"
+  separator_block_width = 40
 }
 
 # Show date/time/timezone as "year-month-day hour:minute:second
 # timezone_numeric/timezone_alphabetic".
 time {
+  format = "%Y-%m-%d %H:%M:%S %z/%Z"
+  separator_block_width = 40
+}
 
-    format = "%Y-%m-%d %H:%M:%S %z/%Z"
+volume master {
+  format = "♪: %volume"
+  format_muted = "♪: muted (%volume)"
+  separator_block_width = 40
 }