Created
April 20, 2009 16:21
-
-
Save program247365/98605 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
# dropbox-set-app-config-symlinks.sh | |
# Shell Script to allow Dropbox to sync the Application Support folders for often used applications | |
# Note: In the finder you will not see the Dropbox icons next the files, however, if you look at the web interface, you will see that they have indeed been synced | |
#Quicksilver | |
ln -s /Users/admin/Library/Application\ Support/Quicksilver /Users/admin/Dropbox/_apps/Quicksilver | |
#TextMate | |
ln -s /Users/admin/Library/Application\ Support/TextMate /Users/admin/Dropbox/_apps/TextMate | |
#Creative Suite Applications | |
ln -s /Users/admin/Library/Application\ Support/Adobe /Users/admin/Dropbox/_apps/Adobe | |
#Colloquy | |
ln -s /Users/admin/Library/Application\ Support/Colloquy /Users/admin/Dropbox/_apps/Colloquy | |
#Adium | |
ln -s /Users/admin/Library/Application\ Support/Adium\ 2.0 /Users/admin/Dropbox/_apps/Adium\ 2.0 | |
#The Hit List | |
ln -s /Users/admin/Library/Application\ Support/The\ Hit\ List /Users/admin/Dropbox/_apps/The\ Hit\ List |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment