View Single Post
chucker
 
Join Date: May 2004
Location: near Bremen, Germany
Send a message via ICQ to chucker Send a message via AIM to chucker Send a message via MSN to chucker Send a message via Yahoo to chucker Send a message via Skype™ to chucker 
2009-11-07, 05:22

One trick to do that (for iCal, Address Book, Keychain, etc.) is to move their data folders to within the Dropbox folder, then put a symlink pointing there at their original locations. There are various guides like this one to show you how. You'll want to combine those two commands into one to minimize the time the folder is unavailable, though, like so:

Code:
(cd ~ && \ mv "Library/Application Support/AddressBook" Dropbox/ && \ ln -s ~/Dropbox/AddressBook ~/Library/Application\ Support/AddressBook)
  quote