From de6f248389ef6d13054179808cbb5391e8af2b7a Mon Sep 17 00:00:00 2001 From: Derek Stevens Date: Thu, 4 Mar 2021 00:26:34 -0500 Subject: [PATCH] batAlarm: update notifiaction format --- batAlarm.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/batAlarm.sh b/batAlarm.sh index 475f221..031e01c 100755 --- a/batAlarm.sh +++ b/batAlarm.sh @@ -13,12 +13,12 @@ while true; do if [ $charge -lt 11 ]; then if [ $flag1 -eq 0 ]; then flag1=1 - notify-send -t 10000 BATTERY ${charge}% + notify-send -t 10000 battery [${charge}%] fi elif [ $charge -lt 21 ]; then if [ $flag2 -eq 0 ]; then flag2=1 - notify-send -t 10000 BATTERY ${charge}% + notify-send -t 10000 battery [${charge}%] fi fi