diff options
author | Joe <bousset.rudy@gmail.com> | 2022-08-17 11:20:48 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-08-17 11:20:48 +0200 |
commit | 01fb0f0361e3a9085f977eeb328590a1bdf2b7e8 (patch) | |
tree | e27cca9d7deac3d04a86a1ce5b50eaf2d8af947d /.local/bin/status/sb-memory | |
parent | update (diff) | |
download | dotfiles-bsd-01fb0f0361e3a9085f977eeb328590a1bdf2b7e8.tar.gz dotfiles-bsd-01fb0f0361e3a9085f977eeb328590a1bdf2b7e8.tar.bz2 dotfiles-bsd-01fb0f0361e3a9085f977eeb328590a1bdf2b7e8.tar.xz dotfiles-bsd-01fb0f0361e3a9085f977eeb328590a1bdf2b7e8.tar.zst dotfiles-bsd-01fb0f0361e3a9085f977eeb328590a1bdf2b7e8.zip |
update
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)))}' |