diff --git a/autopape.sh b/autopape.sh new file mode 100755 index 0000000..3cf6980 --- /dev/null +++ b/autopape.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# simple script to loop through each image in a directory and set said image as wallpaper for 1 minute + +while [ true ] +do + for img in * + do + feh --bg-fill "$img" + sleep 1m + done +done