Files
Arch_Hyprland_dots/.config/scripts/hyprshade-auto.sh
T
2026-01-09 14:40:35 +03:00

66 lines
1.7 KiB
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/bash
STATE_FILE="$HOME/.config/scripts/hyprshade-toggle-state"
SHADER="$HOME/.config/scripts/night_screen.frag"
HOUR=$(date +%H)
ARG="$1"
if [ ! -f "$STATE_FILE" ]; then
echo 0 > "$STATE_FILE" || exit 1
chmod 600 "$STATE_FILE"
fi
STATE=$(cat "$STATE_FILE")
if [ "$ARG" = "exec-start" ]; then
case "$STATE" in
0)STATE=2 ;;
1)STATE=0 ;;
2)STATE=1 ;;
esac
fi
case "$STATE" in
0)
# DEFAULT (AUTO)
systemctl --user daemon-reload
systemctl --user enable --now hyprshade-auto.timer
if [ "$HOUR" -ge 19 ] || [ "$HOUR" -lt 7 ]; then
hyprshade on "$SHADER"
else
hyprshade off
fi
if [ "$ARG" = "time" ]; then
echo "night_mode controlled"
echo 0 > "$STATE_FILE"
else
echo "Default (auto) mod"
echo 1 > "$STATE_FILE"
notify-send "Night Screen" "auto mode active"
fi
;;
1)
# KAPALI
systemctl --user stop hyprshade-auto.service
systemctl --user disable hyprshade-auto.service
systemctl --user stop hyprshade-auto.timer
systemctl --user disable hyprshade-auto.timer
hyprshade off
echo "Kapalı mod"
echo 2 > "$STATE_FILE"
notify-send "Night Screen" "effect is deactive"
;;
2)
# HEP AÇIK
systemctl --user stop hyprshade-auto.service
systemctl --user disable hyprshade-auto.service
systemctl --user stop hyprshade-auto.timer
systemctl --user disable hyprshade-auto.timer
hyprshade on "$SHADER"
echo "Hep açık mod"
echo 0 > "$STATE_FILE"
notify-send "Night Screen" "effect is active"
;;
esac