Last active
February 1, 2021 06:12
-
-
Save ndbroadbent/8e1a2b86ffea401756ba to your computer and use it in GitHub Desktop.
Fix Spotify Icon (Rotate by 5 degrees, tweak curves)
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
#!/bin/sh | |
SPOTIFY_DIR="/Applications/Spotify.app/Contents/Resources/" | |
if ! [ -d $SPOTIFY_DIR ]; then | |
echo "$SPOTIFY_DIR does not exist!" | |
exit 1 | |
fi | |
cd $SPOTIFY_DIR | |
if ! [ -e icon.icns.bak ]; then | |
mv icon.icns icon.icns.bak | |
fi | |
curl http://madebynathan.com/files/Spotify-Fixed.icns -o icon.icns | |
# Try to force icon refresh | |
killall Spotify | |
killall Finder | |
killall Dock | |
echo "If the Spotify icon hasn't changed, you might need to restart your Mac." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Perfect.