add autopape.sh

This commit is contained in:
2023-07-16 19:53:31 +01:00
parent 133f01a0ec
commit 5a2b2e7a85

11
autopape.sh Executable file
View File

@ -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