diff --git a/.local/bin/statusbar/memory b/.local/bin/statusbar/memory index b9e77fef..1cce8132 100755 --- a/.local/bin/statusbar/memory +++ b/.local/bin/statusbar/memory @@ -9,5 +9,5 @@ case $BLOCK_BUTTON in 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac -free --mebi | sed -n '2{p;q}' | awk '{printf ("%2.2fGiB/%2.2f\nGiB", ( $3 / 1024), ($2 / 1024))}' +free --mebi | sed -n '2{p;q}' | awk '{printf ("%2.2fGiB/%2.2fGiB", ( $3 / 1024), ($2 / 1024))}'