From c6163358090bc5c4123f634f3bdd91c987c78aa4 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sat, 10 Jul 2021 17:11:33 +0100 Subject: (Scripts/status)~few minor edits for functionality and cleanliness Status scripts needed some updating for dwmblocks, so did it. --- Scripts/.local/scripts/status/memory | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Scripts/.local/scripts/status/memory') diff --git a/Scripts/.local/scripts/status/memory b/Scripts/.local/scripts/status/memory index 9f50677..042596d 100755 --- a/Scripts/.local/scripts/status/memory +++ b/Scripts/.local/scripts/status/memory @@ -3,5 +3,4 @@ line=$(free -m | sed -n 2p); used=$(echo $line | awk '{print $3}'); available=$(echo $line | awk '{print $2}'); -echo "100 * $used / $available" | bc -l | xargs printf " %.2f" $1 -echo "%" +echo "" $(printf "%dMB" $used) $(echo "100 * $used / $available" | bc -l | xargs printf "%.2f" $1) -- cgit v1.2.3-13-gbd6f