I am running Maverick on my machine and I am trying to write a script to change wallpaper in python. So far, my progress.
import gconf
client = gconf.client_get_default()
current_bg = client.get_string("/desktop/gnome/background/picture_filename")
client.set_string("/desktop/gnome/background/picture_filename","home/tsudot/Pictures/zombie.jpg")
After running the script, I get a clean wallpaper. He shows me a white screen.
I looked at the file gcnonf.xmland the change was made there.
Can anybody help me?
source
share