From 58a8129dbac21f102f57244fb13577357d68474c Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Mon, 25 Dec 2023 18:46:11 +0100 Subject: [PATCH] I don't need bigger font for battery alert. --- _gui/_scripts/sb-battery | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_gui/_scripts/sb-battery b/_gui/_scripts/sb-battery index dd95d29..4c6555e 100755 --- a/_gui/_scripts/sb-battery +++ b/_gui/_scripts/sb-battery @@ -13,5 +13,5 @@ for battery in /sys/class/power_supply/BAT?*; do esac capacity=$(cat "$battery/capacity") # Will make a warn variable if discharging and low - [ "$capacity" -le 20 ] && printf "${status} ${capacity}%%" || printf "${status} ${capacity}%%" + [ "$capacity" -le 20 ] && printf "${status} ${capacity}%%" || printf "${status} ${capacity}%%" done && exit 0