Where is the location of the OS X 10.5 user wallpaper

1.8k Views Asked by At

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

2

There are 2 best solutions below

0
On

Try the path: /Library/Desktop Pictures where root is your computers name. That's where it's located on my OS X 10.5

3
On

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