diff options
author | gokcehan <gokcehankara@gmail.com> | 2019-02-03 16:38:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-03 16:38:17 +0300 |
commit | 478064800bf1fd7999f7bb0ee5ae3553760e2c45 (patch) | |
tree | c65f88cc47cb69da9cd76593cb691189dc928383 | |
parent | 1f3fe73b36547e486984c1798f3ab0b2bf0b9bff (diff) |
default config: move disk info out of network info
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.
-rw-r--r-- | i3status.conf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/i3status.conf b/i3status.conf index 6ac43cb..ba81c3a 100644 --- a/i3status.conf +++ b/i3status.conf @@ -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" } |