From 45c4fbcc06d5bfd452c2f054930cd7eeb374ff19 Mon Sep 17 00:00:00 2001 From: lxf Date: Tue, 5 Apr 2022 10:18:12 -0400 Subject: wrapped up all the updates into one commit --- .config/waybar/modules/storagehome.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 .config/waybar/modules/storagehome.sh (limited to '.config/waybar/modules/storagehome.sh') diff --git a/.config/waybar/modules/storagehome.sh b/.config/waybar/modules/storagehome.sh new file mode 100755 index 0000000..e59c051 --- /dev/null +++ b/.config/waybar/modules/storagehome.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +mount="/home" +warning=20 +critical=10 + +df -h -P -l "$mount" | awk -v warning=$warning -v critical=$critical ' +/\/.*/ { + text=$4 + tooltip="Filesystem: "$1"\rSize: "$2"\rUsed: "$3"\rAvail: "$4"\rUse%: "$5"\rMounted on: "$6 + use=$5 + exit 0 +} +END { + class="" + gsub(/%$/,"",use) + if ((100 - use) < critical) { + class="critical" + } else if ((100 - use) < warning) { + class="warning" + } + print "{\"text\":\""text"\", \"percentage\":"use",\"tooltip\":\""tooltip"\", \"class\":\""class"\"}" +} + ' -- cgit v1.2.3-70-g09d2