How would I go about programatically changing the desktop background in Mac OS X? I'd like to use python, but I'm interested in any way possible. Could I hook up to Terminal and call a certain command?
|
|
From python, if you have appscript installed (
Otherwise, this applescript will change the desktop background
You can run it from the command line using
|
|||||||
|
|
If you are doing this for the current user, you can run, from a shell:
Or, as root, for another user:
You will of course want to replace the image filename and user name. The new setting will take effect when the Dock starts up -- either at login, or, when you
[Based on a posting elsewhere, and based on information from Matt Miller's answer.] |
|||
|
|
|
I had this same question, except that I wanted to change the wallpaper on all attached monitors. Here's a Python script using
|
||||
|
|
|
You can call "defaults write com.apple.Desktop Background ..." as described in this article: http://thingsthatwork.net/index.php/2008/02/07/fun-with-os-x-defaults-and-launchd/ The article also goes into scripting this to run automatically, but the first little bit should get you started. You might also be interested in the defaults man pages: http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/defaults.1.html |
|||
|
|
|
To add to Matt Miller's response: you can use subprocess.call() to execute a shell command as so:
|
|||
|
|
|
You could also use py-appscript instead of Popening osascript or use ScriptingBridge with pyobjc which is included in 10.5 but a bit more cumbersome to use. |
|||
|
|
|
Another way to programmatically change the desktop wallpaper is to simply point the wallpaper setting at a file. Use your program to overwrite the file with the new design, then restart the dock: THe following depends on Xcode, lynx and wget, but here's how I automatically download and install a monthly wallpaper on Mountain Lion (shamelessly stolen and adapted from http://ubuntuforums.org/showthread.php?t=1409827) :
Dump it into |
||||
|
|