Skip to content

Instantly share code, notes, and snippets.

@jaburns
Created March 30, 2015 21:04
Show Gist options
  • Save jaburns/30a21fdc60405e4c64c3 to your computer and use it in GitHub Desktop.
Save jaburns/30a21fdc60405e4c64c3 to your computer and use it in GitHub Desktop.
Force inverted tray icons for OSX Google Drive
#!/usr/bin/env bash
cd /Applications/Google\ Drive.app/Contents/Resources
for file in $(find . -depth 1 | grep 'inverse.*png'); do
echo "Fixing $file ..."
cp "$file" "$(printf "$file" | sed 's/-inverse//')"
done
echo 'Done!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment