diff options
author | Joe <rrbo@proton.me> | 2023-11-24 12:41:41 +0100 |
---|---|---|
committer | Joe <rrbo@proton.me> | 2023-11-24 12:41:41 +0100 |
commit | fba57bb7e7cbc9d750b05f2d6292b742b7d3deb6 (patch) | |
tree | 8ec0f7f32548ff01aa51f57df452f211c56aedd6 /.local/bin/status/sb-cpu | |
parent | up (diff) | |
download | dotfiles-bsd-fba57bb7e7cbc9d750b05f2d6292b742b7d3deb6.tar.gz dotfiles-bsd-fba57bb7e7cbc9d750b05f2d6292b742b7d3deb6.tar.bz2 dotfiles-bsd-fba57bb7e7cbc9d750b05f2d6292b742b7d3deb6.tar.xz dotfiles-bsd-fba57bb7e7cbc9d750b05f2d6292b742b7d3deb6.tar.zst dotfiles-bsd-fba57bb7e7cbc9d750b05f2d6292b742b7d3deb6.zip |
up
Diffstat (limited to '')
-rwxr-xr-x | .local/bin/status/sb-cpu | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.local/bin/status/sb-cpu b/.local/bin/status/sb-cpu index 169b24d..e85f422 100755 --- a/.local/bin/status/sb-cpu +++ b/.local/bin/status/sb-cpu @@ -22,14 +22,14 @@ case $(hostname -s) in esac case $(echo "$stats" | sed '{1,3d;s/% idle$//;s/.*[[:blank:]]//;s/\..*//;s/^/(100 - /;s/$/) \/ 12\.5/;}' | bc) in - "0") printf "[ ]\n";; - "1") printf "[= ]\n";; - "2") printf "[== ]\n";; - "3") printf "[=== ]\n";; - "4") printf "[==== ]\n";; - "5") printf "[===== ]\n";; - "6") printf "[====== ]\n";; - "7") printf "[======= ]\n";; - "8") printf "[========]\n";; + "0") printf "[ ]\n" ;; + "1") printf "[= ]\n" ;; + "2") printf "[== ]\n" ;; + "3") printf "[=== ]\n" ;; + "4") printf "[==== ]\n" ;; + "5") printf "[===== ]\n" ;; + "6") printf "[====== ]\n" ;; + "7") printf "[======= ]\n" ;; + "8") printf "[========]\n" ;; esac |