From 477797e045111ff6e6e27203d6d290cf1acccf66 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 10 Nov 2025 21:58:30 -0700 Subject: [PATCH] Change default non-DWM formatting. --- files/functions/storage.function | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/functions/storage.function b/files/functions/storage.function index b06e56c..62c8d72 100755 --- a/files/functions/storage.function +++ b/files/functions/storage.function @@ -16,7 +16,7 @@ function storage-display { elif [[ "$style" == "G" || "$style" == "S" || "$style" == "F" ]]; then df -h "$location" | tail -n 1 | awk '{print $4" Free"}' else - df -h "$location" | tail -n 1 | awk '{print $5" Used, "$4"/"$2" Free"}' + df -h "$location" | tail -n 1 | awk '{print $5" Used - "$4"/"$2" Free"}' fi } alias storage='echo -n "Root: " && storage-display "/" "F" && echo -n "Home: " && storage-display "/home" "F"'