I'm trying to find a way to automatically switch skydome 'wallpapers' for Compiz Cube based on time, say ten minutes. Having each of my desktops use a different one would be bonus internets.
Any help would be awesomely appreciated.
Edit: In case anyone's interested, here's a small script you can run from cron.
#!/bin/bash
pic=/your/background/directory
newbg="$(ls $pic | shuf -n1)"
dbus-send --type=method_call --dest=org.freedesktop.compiz /org/freedesktop/compiz/cube/screen0/skydome_image org.freedesktop.compiz.set string:"$pic$newbg"