2010年10月1日 星期五

[Mac]多帳號同時登入 Dropbox

# 建立一個新的.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
view raw make-dropbox.sh hosted with ❤ by GitHub


沒有留言: