wallflow 0.5.2

Elegant wallpaper management with smooth transitions, powered by awww
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
# Pre-removal script for wallflow

set -e

case "$1" in
    remove)
        # Stop any running wallflow daemons
        pkill -f "wallflow daemon" || true

        # Clean up any PID files
        rm -f /home/*/.local/share/wallflow/wallflow.pid || true

        echo "🌊 wallflow daemon stopped"
        ;;
esac

exit 0