Last active
August 29, 2015 14:07
-
-
Save dbrinegar/70f85d8f65e27bfff504 to your computer and use it in GitHub Desktop.
remove Dropbox bright green check mark in Yosemite
This file contains hidden or 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
Mac O/S 10.10 introduced bright colored flat icons, and in that spirit Dropbox added a bright | |
green check mark for synced files. These are so bright that they leave an afterimage in my eye, | |
so I've removed them and am much happier |
This file contains hidden or 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
#!/bin/sh | |
# remove the bright green icon | |
cd /Applications/Dropbox.app/Contents/PlugIns/garcon.appex/Contents/Resources | |
mv overlay-uptodate.icns overlay-uptodate.icns.REMOVED | |
# restart dropbox and finder | |
killall Dropbox | |
killall Finder | |
open /Applications/Dropbox.app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment