Files
scripts/shell/toggle_grayscale.sh
2025-11-01 21:43:53 +01:00

9 lines
160 B
Bash
Executable File

#!/usr/bin/env bash
HOUR=$(date +%H)
if [ "$HOUR" -ge 19 ] || [ "$HOUR" -lt 7 ]; then
hyprshade on grayscale-custom
else
hyprshade off grayscale-custom
fi