Skip to content

Instantly share code, notes, and snippets.

@Superbil
Last active April 8, 2020 00:13
Show Gist options
  • Save Superbil/607338 to your computer and use it in GitHub Desktop.
Save Superbil/607338 to your computer and use it in GitHub Desktop.
Open another Dropbox account for mac, new version https://github.com/Superbil/Dropbox-AltStarter-app
# 建立一個新的.dropbox目錄,存另一個帳號的資料
# Make another .dropbox dir to save data
HOME=/Users/$USER/.dropbox-alt
/Applications/Dropbox.app/Contents/MacOS/Dropbox
# Make another dropbox app
mkdir -p /Users/$USER/Applications/DropboxAltStarter.app/Contents/MacOS/
cat > /Users/$USER/Applications/DropboxAltStarter.app/Contents/Info.plist << EOF
<?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>
EOF
cat > /Users/$USER/Applications/DropboxAltStarter.app/Contents/MacOS/DropboxAltStarter << EOF
#!/bin/bash
# Assumes you have Dropbox in /Applications
HOME=/Users/$USER/.dropbox-alt /Applications/Dropbox.app/Contents/MacOS/Dropbox
EOF
chmod 755 /Users/$USER/Applications/DropboxAltStarter.app/Contents/MacOS/DropboxAltStarter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment