I was just wondering where the /File/System/Location/
of a users current wallpaper is stored in OS X 10.5. Something like how the default login windows wallpaper is stored at /System/Library/CoreServices/DefaultDesktop.jpg
views:
36answers:
1
A:
Information about the current desktop picture of each desktop (i.e. monitor) is available through the System Events AppleScript interface. For example:
tell application "System Events"
get picture of its first desktop
end tell
Ned Deily
2010-07-07 20:36:32
does OSX pull the image from there. My question is where does the system keep a consistently named cache copy of the image?
Taylor Satula
2010-07-14 20:45:46
Ned Deily
2010-07-14 21:48:41
See the Desktop Suite section of System Events.sdef in the AppleScript Script Editor.app for more details of the script interface. And perhaps if you could elaborate on what you are trying to do, a better answer could be formulated.
Ned Deily
2010-07-14 21:55:01