All pastes #1957195 Raw Edit

Untitled

public shellscript v1 · immutable
#1957195 ·published 2010-10-07 21:49 UTC
rendered paste body
#!/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