diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2020-12-18 11:56:46 -0500 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2020-12-18 11:56:46 -0500 |
| commit | 741e9298bd7b0dabeea26dfe039274afca572f6d (patch) | |
| tree | 19ea50d67534354197c89a7554504083100a76b7 /.local | |
| parent | 29c8156e66c1c880a977c6feb36ebe1d6a54b9be (diff) | |
| download | eibhear-741e9298bd7b0dabeea26dfe039274afca572f6d.tar.gz eibhear-741e9298bd7b0dabeea26dfe039274afca572f6d.tar.zst eibhear-741e9298bd7b0dabeea26dfe039274afca572f6d.zip | |
battery warning fix; zsh beam simplified
Diffstat (limited to '.local')
| -rwxr-xr-x | .local/bin/statusbar/battery | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/statusbar/battery b/.local/bin/statusbar/battery index c484286..d0272ec 100755 --- a/.local/bin/statusbar/battery +++ b/.local/bin/statusbar/battery @@ -33,7 +33,7 @@ do esac capacity=$(cat "$battery/capacity") # Will make a warn variable if discharging and low - [ "$status" = "🔋" ] && [ "$capacity" -le 25 ] && local warn="❗" + [ "$status" = "🔋" ] && [ "$capacity" -le 25 ] && warn="❗" # Prints the info - printf "%s%s%d%%\n" "$status" "$warn" "$capacity" + printf "%s%s%d%%\n" "$status" "$warn" "$capacity"; unset warn done && return 0 |
