dotfiles/.config/awesome/themes/powerarrow-dark/bg-slideshow.sh

12 lines
232 B
Bash
Raw Normal View History

2023-08-14 08:15:24 +00:00
FOLDER="/home/oliver/.config/awesome/themes/powerarrow-dark/wallpaper"
DELAY=10
while true; do
LIST=`find "$FOLDER" -type f -name '*.png'`
for picture in $LIST; do
feh "$picture" --bg-fill
sleep ${DELAY}s
done
sleep 1
done