Untitled
public shellscript v1 · immutable#!/bin/bashwhile [ 1 ]dofind /path/to/wallpapers/folder -type f > ~/walls.txtcount=$(cat ~/walls.txt | wc -l) for files in $(seq $count) do file=$(cat ~/walls.txt | head -n $files | tail -n 1) gconftool-2 --type string --set /desktop/gnome/background/picture_filename "$file" sleep 300 # wait 5 minutes before changing again donedone