From 1d700f24846cd08fc9e5a0bcce75045d2f9353a9 Mon Sep 17 00:00:00 2001 From: finga Date: Fri, 2 Jun 2023 13:10:06 +0200 Subject: [PATCH] i3status-rs: Drop uptime in favor of disk usage Drop uptime block on main monitor in favor of disk usage of `\boot` and as uptime is shown on the right screen anyways. --- .config/i3status-rust/config.toml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.config/i3status-rust/config.toml b/.config/i3status-rust/config.toml index d15de8d..5d5e960 100644 --- a/.config/i3status-rust/config.toml +++ b/.config/i3status-rust/config.toml @@ -11,9 +11,6 @@ separator = "|" separator_fg = "#00cc00" separator_bg = "#222222" -[[block]] -block = "uptime" - [[block]] block = "weather" format = " $icon $weather $temp, $humidity, $wind m/s $direction " @@ -50,6 +47,14 @@ alert = 90.0 info_type = "used" format = " $icon $path $percentage " +[[block]] +block = "disk_space" +path = "/boot" +warning = 75.0 +alert = 85.0 +info_type = "used" +format = " $icon $path $percentage " + [[block]] block = "disk_space" path = "/home"