Created
November 17, 2010 08:26
-
-
Save yanyaoer/703133 to your computer and use it in GitHub Desktop.
set wallpaper with applescript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Finder" | |
set pic1 to POSIX file "/Users/evan/Pictures/fav/3988102622_aec9e25b9e_o.jpg" | |
set pic2 to POSIX file "/Users/evan/Pictures/fav/fruit-dealer-full.jpg" | |
tell application "System Events" | |
set theDesktops to a reference to every desktop | |
set picture of item 2 of the theDesktops to file pic2 | |
end tell | |
set desktop picture to file pic1 | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment