#!/bin/bash SOURCE_DIR=~/Pictures/Wallpapers/Current while true do WALLPAPER=$(find $SOURCE_DIR -type f | shuf -n 1) swww img --no-resize -t wipe --transition-fps=100 $WALLPAPER sleep 20m done