how can i change desktop background with python
i want to do it in both windows and linux
thanks
|
how can i change desktop background with python i want to do it in both windows and linux thanks |
|||||
|
|
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.
|
|||||
|
|
On Windows with python2.5 or higher, use ctypes to load user32.dll and call For example:
|
||||
|
In gnome, it is probably preferable to use the python binding of gconf directly:
|
|||
|
|
|
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. |
|||
|
|