#!/bin/bash # script to rotate GNOME backgrounds
# set this to your delay time. see man sleep for info delay=15m
# update gnome backgound in gconf gconftool-2 -t string -s /desktop/gnome/background/picture_filename $(ls /usr/share/backgrounds/*.{jpg,png,gif} | shuf -n1)
sleep $delay exec $0
#!/bin/bash # script to rotate GNOME backgrounds # set this to your delay time. see man sleep for info delay=15m # update gnome backgound in gconf gconftool-2 -t string -s /desktop/gnome/background/picture_filename $(ls /usr/share/backgrounds/*.{jpg,png,gif} | shuf -n1) sleep $delay exec $0
|