10 lines
208 B
Bash
10 lines
208 B
Bash
|
WALLPAPER_FILE="$HOME/.wallpaper.gif"
|
||
|
|
||
|
if [ ! -f "$WALLPAPER_FILE" ]; then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
systemctl --user start swww-daemon.service &&
|
||
|
swww img "$WALLPAPER_FILE" &&
|
||
|
systemctl --user stop hyprpaper.service
|