shiningthrough

Synchronize MarsEdit on multiple machines by sharing Local Drafts folder with Dropbox

12 August 2010

MarsEdit is my blogging client of choice, and I like to use it both on my MacPro and MacBook Pro. This can be achieved by using Dropbox.

On the machine you currently use for MarsEdit, paste the following commands into a terminal window. Make sure you quit MarsEdit first if its running.

mkdir ~/Dropbox/MarsEdit
cd ~/Library/Application\ Support/MarsEdit/
mv LocalDrafts ~/Dropbox/MarsEdit/
ln -s ~/Dropbox/MarsEdit/LocalDrafts LocalDrafts

On the other machines you wish to use MarsEdit with, paste the following commands into a terminal window. Make sure you quit MarsEdit first if its running.

cd ~/Library/Application\ Support/MarsEdit/
rm LocalDrafts
ln -s ~/Dropbox/MarsEdit/LocalDrafts LocalDrafts

That's it!

Comments