-
Notifications
You must be signed in to change notification settings - Fork 31
OS X change wallpaper on all desktops #34
Comments
I thought this was done by: OSX_SCRIPT = '''tell application "System Events"
set desktopCount to count of desktops
repeat with desktopNumber from 1 to desktopCount
tell desktop desktopNumber
set picture to POSIX file "%s"
end tell
end repeat
end tell
''' % image Which seems to do it to all desktops ... apparently not. Can you provide code for all desktops? |
I can't, no. Maybe the original author of that change could?
|
Working on something similar here (getspace.py) – just found your repo, maybe we can cooperate on some things (will definitely be borrowing from your Linux functions after having had a comparable general idea). With regards to this issue: that AppleScript bit is actually not really working as it used to. As you can see, – after reading this – we are using a sqilte cmd at the moment (although that uses Any other ideas/experiences? |
Does |
@bharadwaj-raju yes, it does, though it is somewhat negligible (some GUI effects will be disturbed/reset system wide for a brief instance, but no saved stuff will be deleted as far is I know). I am researching the behavior of the Will let you know if I come up with something. |
@jnshnz Then how does OS X do it through the GUI (which, I assume, causes no disturbance)? Does |
On OS X, running this will only change the wallpaper on the active desktop. Would be awesome to see it change the wallpaper on all desktops.
The text was updated successfully, but these errors were encountered: