]> git.sur5r.net Git - i3/i3status/commitdiff
default config: move disk info out of network info 336/head
authorgokcehan <gokcehankara@gmail.com>
Sun, 3 Feb 2019 13:38:17 +0000 (16:38 +0300)
committerGitHub <noreply@github.com>
Sun, 3 Feb 2019 13:38:17 +0000 (16:38 +0300)
By default, disk info is found in a strange place in between ipv6 and wireless information. This commit puts it in between other performance meters. Settings in the file are also now sorted according to their places in the order.

i3status.conf

index 6ac43cbb231252bfa43d1c07e70c34d574a27b23..ba81c3a593fc8d2b3a8f5dfe1dd8c0610c9c0eaa 100644 (file)
@@ -12,10 +12,10 @@ general {
 }
 
 order += "ipv6"
-order += "disk /"
 order += "wireless _first_"
 order += "ethernet _first_"
 order += "battery all"
+order += "disk /"
 order += "load"
 order += "memory"
 order += "tztime local"
@@ -34,8 +34,8 @@ battery all {
         format = "%status %percentage %remaining"
 }
 
-tztime local {
-        format = "%Y-%m-%d %H:%M:%S"
+disk "/" {
+        format = "%avail"
 }
 
 load {
@@ -48,6 +48,6 @@ memory {
         format_degraded = "MEMORY < %available"
 }
 
-disk "/" {
-        format = "%avail"
+tztime local {
+        format = "%Y-%m-%d %H:%M:%S"
 }