From 24d5504a8e7ae8bc68fde6c16413900cd7eddef2 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sun, 17 Feb 2019 11:57:26 +0200 Subject: [PATCH] i3status: show / and /home free spaces anyway & rbtpzn load comment Even if it's there and judgingly says that I have used half of my /, it's still nothing to worry about and seeing it there all the time will give me advance warning if it does become something I need to look at. --- conf/i3status/config | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/conf/i3status/config b/conf/i3status/config index df6d9dc6..229b8967 100644 --- a/conf/i3status/config +++ b/conf/i3status/config @@ -11,6 +11,8 @@ general { interval = 1 } +order += "disk /" +order += "disk /home" order += "ipv6" order += "volume master" order += "load" @@ -23,8 +25,9 @@ order += "tztime local" # Load is first as the treshold may need the most modification here load { format = "%1min %5min %15min" - # The default is 5 while my laptop has only 4. + # The default is 5 while my laptop has only 4 and older PC 1. max_threshold = "3,7" + #max_threshold = "0,7" } wireless _first_ { @@ -65,3 +68,11 @@ ipv6 { format_up = "IPv6: 🢁" format_down = "IPv6: 🢃" } + +disk / { + format = "/: %free" +} + +disk /home { + format = "/home: %free" +}