From 1f80ae89d060a48f9959c67840e641372a04e127 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Wed, 22 Jul 2026 15:24:55 +0530 Subject: greyline, live wallpaper --- hypr/battery-notif.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hypr/battery-notif.sh') diff --git a/hypr/battery-notif.sh b/hypr/battery-notif.sh index e64442a..6c721a5 100755 --- a/hypr/battery-notif.sh +++ b/hypr/battery-notif.sh @@ -5,12 +5,12 @@ while true; do if [[ "$status" = "Discharging" ]]; then battery=$(cat /sys/class/power_supply/BAT1/capacity) if [[ battery -lt 16 ]]; then - notify-send -u critical "Very Low Battery" -i ~/.config/hypr/battery/battery_critical.png -t 5000 + notify-send -u critical "CHARGE" "Very Low Battery" -t 2000 elif [[ battery -lt 31 ]]; then - notify-send -u normal "Low Battery" -i ~/.config/hypr/battery/battery_low.png -t 5000 + notify-send -u normal "CHARGE" "Low Battery" -t 2000 fi fi pid=$! - sleep 5 + sleep 2 kill $pid done -- cgit v1.2.3