diff options
Diffstat (limited to '')
-rwxr-xr-x | .local/bin/status/sb-memory | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/status/sb-memory b/.local/bin/status/sb-memory index 0a9221c..2ab06bd 100755 --- a/.local/bin/status/sb-memory +++ b/.local/bin/status/sb-memory @@ -1,3 +1,3 @@ #!/bin/sh -freecolor -o | sed -n '2p' | awk '{printf (" %2.2fGB/%2.2fGB\n", ($3 / (1024 ^ 2)), ($2 / (1024 ^ 2)))}' +freecolor -o | sed -n '2p' | awk '{printf (" %2.2fG/%2.2fG\n", ($3 / (1024 ^ 2)), ($2 / (1024 ^ 2)))}' |