diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-06-20 15:53:22 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-06-20 15:53:22 +0200 |
commit | 540d1a708efe4eadd1d09290bf8049e7cb5eceb0 (patch) | |
tree | d743b8b6ac6dbaaed9fdb8e79d8cd74e8aa8303d /.local/bin/statusbar/sb-memory | |
parent | 74e1dacf46ba61f6039f4e770806c11f9b3a81f5 (diff) |
Modifications to Luke's statusbar scripts
Diffstat (limited to '.local/bin/statusbar/sb-memory')
-rwxr-xr-x | .local/bin/statusbar/sb-memory | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/statusbar/sb-memory b/.local/bin/statusbar/sb-memory index d398085..aeeffa2 100755 --- a/.local/bin/statusbar/sb-memory +++ b/.local/bin/statusbar/sb-memory @@ -9,4 +9,4 @@ case $BLOCK_BUTTON in 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac -free --mebi | sed -n '2{p;q}' | awk '{printf (" %2.2fGiB\n", ( $3 / 1024))}' +free --mebi | sed -n '2{p;q}' | awk '{printf ("%2.2fGiB\n", ( $3 / 1024))}' |