nixos/system/home/scripts/shell/animate-wallpaper.sh
Evie Litherland-Smith 6b15453306 Adjust timing for animate-wallpaper script
Don't animate wallpaper by default for Vanguard
2025-01-04 06:16:17 +00:00

11 lines
221 B
Bash

WALLPAPER_FILE="$HOME/.wallpaper.gif"
if [ ! -f "$WALLPAPER_FILE" ]; then
exit 1
fi
systemctl --user start swww-daemon.service &&
sleep 5 &&
swww img "$WALLPAPER_FILE" &&
systemctl --user stop hyprpaper.service