Skip to content

Instantly share code, notes, and snippets.

@itspriddle
Created January 11, 2011 17:06
Show Gist options
  • Select an option

  • Save itspriddle/774726 to your computer and use it in GitHub Desktop.

Select an option

Save itspriddle/774726 to your computer and use it in GitHub Desktop.
# Dropbox.app removes ~/Library/Contextual\ Menu\ Items/DropboxPlugin.plugin each time it's opened.
# Putting the plugin in /Library/Contextual\ Menu\ Items and chowning it to root:admin seems to fix it.
cd /Library/Contextual\ Menu\ Items
sudo cp /Applications/Dropbox.app/Contents/Resources/DropboxPlugin.plugin.tgz .
sudo tar -vzxf DropboxPlugin.plugin.tgz
sudo rm DropboxPlugin.plugin.tgz
sudo chown -R root:admin DropboxPlugin.plugin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment