mirror of
https://github.com/Ascyii/scripts.git
synced 2026-01-01 12:54:24 -05:00
11 lines
198 B
Bash
Executable File
11 lines
198 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
HOUR=$(date +%H)
|
|
if [ "$HOUR" -ge 19 ] || [ "$HOUR" -lt 7 ]; then
|
|
hyprshade on grayscale-custom
|
|
dunstctl set-paused true
|
|
else
|
|
hyprshade off
|
|
dunstctl set-paused false
|
|
fi
|