Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how can i change desktop background with python

i want to do it in both windows and linux

thanks

share|improve this question
2  
For the linux-half of your question, (and assuming a GNOME desktop environment), you might want to take a look at oracle.bridgewayconsulting.com.au/~danni/misc/… – unutbu Dec 30 '09 at 0:17

4 Answers

up vote 6 down vote accepted

On a gnome desktop, you usually do this with gconf, either directly calling gconftool or using the gconf python module. The latter is in the link given by unutbu. The first method could be done like this.

import commands
command = "gconftool-2 --set /desktop/gnome/background/picture_filename --type string '/path/to/file.jpg'"
status, output = commands.getstatusoutput(command)  # status=0 if success
share|improve this answer
For Ubuntu 11.04 this no longer seems to work. The gconf setting changes, but the background doesn't refresh to the new image. – hobs Oct 25 '11 at 3:00
I'm using 11.04, and I just wrote a script that cycles through images in a folder, and I used this snippet. Worked fine for me. However, I'm executing the command with os.system(command) – MikeVaughan Mar 16 '12 at 19:59

On Windows with python2.5 or higher, use ctypes to load user32.dll and call SystemParametersInfo() with SPI_SETDESKWALLPAPER action.

For example:

>>> import ctypes
>>> SPI_SETDESKWALLPAPER = 20 
>>> ctypes.windll.user32.SystemParametersInfoA(SPI_SETDESKWALLPAPER, 0, "image.jpg" , 0)
share|improve this answer
+1 ctypes is preferable to pywin32 – James Dec 30 '09 at 0:47
Didn't seem to work with a .jpg, works with a .bmp tho (on xp) – Noelkd May 14 at 11:19

In gnome, it is probably preferable to use the python binding of gconf directly:

import gconf
conf = gconf.client_get_default()
conf.set_string('/desktop/gnome/background/picture_filename','/path/to/filename.jpg')
share|improve this answer

On windows, you will need some trickery with pywin32, and the windows API, on 'linux' the answer will depend on which desktop is running - KDE, Gnome, or something more exotic. Under KDE (and maybe Gnome) you can probably send a message using D-Bus, which you could do without including any new libraries by using the command line tool dbus-send.

The other option would be to set the desktop wallpaper to a file which you then edit / replace from python - but this will probably only result in a change when the user logs in.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.