#!/bin/bash COUNTER=0 while [ $COUNTER ]; do sleep 60; FN=`wget -q http://fotobash.ru/random.php -O -`; ID=`echo $FN | sed 's/http:\/\/fotobash.ru\/pic\///'`; wget -q $FN -O /tmp/$ID; `DISPLAY=":0" /usr/bin/gconftool-2 --set --type string /desktop/gnome/background/picture_filename /tmp/$ID` let COUNTER=COUNTER+1 done