From 52187aa3c458085e278b226009046683fa0f7406 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Mon, 5 Sep 2022 17:32:25 -0700 Subject: [PATCH] :lipstick: Changed icon for battery low notification --- scripts/batnotify | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/batnotify b/scripts/batnotify index bdc97c97..50f0274e 100755 --- a/scripts/batnotify +++ b/scripts/batnotify @@ -3,7 +3,7 @@ while true ; do PWRLVL=$(cat /sys/class/power_supply/BAT1/capacity) if [ "$PWRLVL" -le 15 ] ; then - notify-send "  Battery is at 15%!!"; + notify-send "  Battery is at 15%!!"; sleep 300s; else sleep 60s;