10 lines
198 B
Bash
Executable file
10 lines
198 B
Bash
Executable file
#!/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
|