This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 建立一個新的.dropbox目錄,存另一個帳號的資料 | |
# Make another .dropbox dir to save data | |
HOME=/Users/$USER/.dropbox-alt | |
/Applications/Dropbox.app/Contents/MacOS/Dropbox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
- 參考文件:
- Dropbox 在 Mac 上的密技
沒有留言:
張貼留言