Hey guys,
I used to have ControlPlane change my desktop background when I arrive at the office in Mountain Lion but as they changed the way desktops are handled in Mavericks this script doesn't work anymore:
I understand that HFS paths are not working anymore, but the same script with POSIX paths doesn't work either. Any chance you guys have an idea on how to do this?
Thanks,
V
I used to have ControlPlane change my desktop background when I arrive at the office in Mountain Lion but as they changed the way desktops are handled in Mavericks this script doesn't work anymore:
Code:
tell application "System Events"
-- SET DESKTOP TO SPECIFIC PICTURE
tell (every desktop whose display name is "Cinema Display X")
set picture rotation to 0 -- (0=off, 1=interval, 2=login, 3=sleep)
set picture to file "Macintosh HD:Users:User:Pictures:Wallpaper:Wallpaper1.jpg"
end tell
tell (every desktop whose display name is "Color LCD Y")
set picture rotation to 0 -- (0=off, 1=interval, 2=login, 3=sleep)
set picture to file "Macintosh HD:Users:User:Pictures:Wallpaper:Wallpaper2.jpg"
end tell
end tell
I understand that HFS paths are not working anymore, but the same script with POSIX paths doesn't work either. Any chance you guys have an idea on how to do this?
Thanks,
V