Files
scripts/shell/toggle_grayscale.sh

9 lines
143 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
fi