Created
August 27, 2014 22:32
-
-
Save jdmonaco/284d4975d5e8777456f1 to your computer and use it in GitHub Desktop.
A quick script to link OS X Mavericks system desktop wallpapers into your user '~/Library/Desktop Pictures' folder. This way you can delete links to wallpapers you don't want.
This file contains 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
#!/bin/bash | |
mkdir -p ~/Library/Desktop\ Pictures | |
cd ~/Library/Desktop\ Pictures | |
find /Library/Desktop\ Pictures/ -size +1M -name "*.jpg" -exec ln -s "{}" . \; 2>/dev/null | |
find /Library/Screen\ Savers/ -size +1M -name "*.jpg" -exec ln -s "{}" . \; 2>/dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment