Skip to content

Instantly share code, notes, and snippets.

@Superbil
Last active August 29, 2015 14:04
Show Gist options
  • Save Superbil/e37d0cffd21c8dd1872e to your computer and use it in GitHub Desktop.
Save Superbil/e37d0cffd21c8dd1872e to your computer and use it in GitHub Desktop.
Dropbox Alt Starter and Info.plist for Mac
#!/usr/bin/env zsh
ALT_FOLDER=.dropbox-alt
ALT_HOME=/Users/$USER/$ALT_FOLDER
# Use mdfind to find Dropbox.app
for p in `mdfind Dropbox.app`;
do
if [[ -d $p ]]; then
HOME=$ALT_HOME $p/Contents/MacOS/Dropbox
fi
done
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleExecutable</key>
<string>DropboxAltStarter</string>
<key>LSUIElement</key>
<string>1</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment