diff options
author | Joe <rbo@gmx.us> | 2024-12-24 21:29:43 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-12-24 21:29:43 +0100 |
commit | 6176ed9a99e3824cfd1a6c4cbcc30a3c90ac7818 (patch) | |
tree | f3d6d01b779222151fef46c164458d9fb6b6f1a8 | |
parent | bar update (diff) | |
download | dotfiles-bsd-6176ed9a99e3824cfd1a6c4cbcc30a3c90ac7818.tar.gz dotfiles-bsd-6176ed9a99e3824cfd1a6c4cbcc30a3c90ac7818.tar.bz2 dotfiles-bsd-6176ed9a99e3824cfd1a6c4cbcc30a3c90ac7818.tar.xz dotfiles-bsd-6176ed9a99e3824cfd1a6c4cbcc30a3c90ac7818.tar.zst dotfiles-bsd-6176ed9a99e3824cfd1a6c4cbcc30a3c90ac7818.zip |
up
-rwxr-xr-x | .local/bin/status/sb-battery | 2 | ||||
-rwxr-xr-x | .local/bin/status/sb-cpu | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/status/sb-battery b/.local/bin/status/sb-battery index e239aea..ca4ff69 100755 --- a/.local/bin/status/sb-battery +++ b/.local/bin/status/sb-battery @@ -2,7 +2,7 @@ echo -n "^c#fabd2f^" case $(hostname -s) in - mother) return ;; + mother) exit ;; po-rbo) charge=$(cat /sys/class/power_supply/BAT0/capacity) case "$(cat /sys/class/power_supply/BAT0/status)" in diff --git a/.local/bin/status/sb-cpu b/.local/bin/status/sb-cpu index f6eaa92..45def29 100755 --- a/.local/bin/status/sb-cpu +++ b/.local/bin/status/sb-cpu @@ -15,7 +15,7 @@ case $(hostname -s) in top -b -d 0.1 -n 1 | grep "Cpu(s)" | \ sed "s/.*, *\([0-9.]*\)%* id.*/\1/" | \ awk '{print int(100 - $1)"%"}' - return + exit ;; mars) stats=$(top -d 2 -s 0.2 | grep -E 'load averages:|^CPU') |