Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save miketucker/2346040 to your computer and use it in GitHub Desktop.
Save miketucker/2346040 to your computer and use it in GitHub Desktop.
Remove dropbox's green check icon from Finder windows. USAGE: Open a Terminal window and paste entire contents.
file=/Applications/Dropbox.app/Contents/Resources/check.icns
[ -e "$file" ] && mv -f "$file" "$file.bak"
unset file
file=/Applications/Dropbox.app/Contents/Resources/check.icns
[ -e "$file" ] && mv -f "$file" "$file.bak"
unset file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment