diff options
author | Joe <bousset.rudy@gmail.com> | 2022-08-16 22:15:54 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-08-16 22:15:54 +0200 |
commit | 0aa66b9658d10dc33458d127e69c511e480b953c (patch) | |
tree | 6836c0d1ab15599b58cc6d051d4be2d721733929 /.local | |
parent | updat (diff) | |
download | dotfiles-bsd-0aa66b9658d10dc33458d127e69c511e480b953c.tar.gz dotfiles-bsd-0aa66b9658d10dc33458d127e69c511e480b953c.tar.bz2 dotfiles-bsd-0aa66b9658d10dc33458d127e69c511e480b953c.tar.xz dotfiles-bsd-0aa66b9658d10dc33458d127e69c511e480b953c.tar.zst dotfiles-bsd-0aa66b9658d10dc33458d127e69c511e480b953c.zip |
update
Diffstat (limited to '.local')
-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 79049cb..b48d358 100755 --- a/.local/bin/status/sb-memory +++ b/.local/bin/status/sb-memory @@ -1,3 +1,3 @@ #!/bin/sh -sysctl -n hw.usermem hw.physmem | xargs | awk '{printf (" %2.2fGiB/%2.2fGiB\n", ($1 / (1024 ^ 3)), ($2 / (1024 ^ 3)))}' +sysctl -n hw.usermem hw.realmem | xargs | awk '{printf (" %2.2fGiB/%2.2fGiB\n", ($1 / (1024 ^ 3)), ($2 / (1024 ^ 3)))}' |