#! /bin/bash # this script repeats indefinitely and refreshes the desktop # background every 10 seconds a=1 while [ $a ] do xfdesktop --reload sleep 10 done