From 6eceba1a199279b5ea37dbdfc07f13b633084e40 Mon Sep 17 00:00:00 2001 From: FURK4NGG <105324908+FURK4NGG@users.noreply.github.com> Date: Fri, 16 Jan 2026 21:07:48 +0300 Subject: [PATCH] Update hyprshade-auto.sh --- .config/scripts/hyprshade-auto.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.config/scripts/hyprshade-auto.sh b/.config/scripts/hyprshade-auto.sh index da96970..a16788b 100644 --- a/.config/scripts/hyprshade-auto.sh +++ b/.config/scripts/hyprshade-auto.sh @@ -32,12 +32,13 @@ case "$STATE" in fi if [ "$ARG" = "time" ]; then - echo "night_mode controlled" + echo "Night Screen called" echo 0 > "$STATE_FILE" else echo "Default (auto) mod" echo 1 > "$STATE_FILE" - notify-send "Night Screen" "auto mode active" + notify-send "Night Screen" "auto mode is active" + echo "Night Screen auto mode is active" fi ;; 1) @@ -50,6 +51,7 @@ case "$STATE" in echo "Kapalı mod" echo 2 > "$STATE_FILE" notify-send "Night Screen" "effect is deactive" + echo "Night Screen effect is deactive" ;; 2) # HEP AÇIK @@ -61,5 +63,6 @@ case "$STATE" in echo "Hep açık mod" echo 0 > "$STATE_FILE" notify-send "Night Screen" "effect is active" + echo "Night Screen effect is active" ;; esac