diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-07 17:06:45 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-07 17:06:45 +0100 |
commit | bec891dac2cc69a75e4c5d273b4a1f3893f5b14b (patch) | |
tree | be43fe7d00cd56dc72e0d0da00a6c2bb6e64be60 /.local/bin/statusbar/sb-memory | |
parent | a422b3858f2862b4865e2859ad85c977dc83f4b4 (diff) |
Update 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 aeeffa2..d64f241 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 ("RAM: %2.2fGiB\n", ( $3 / 1024))}' |