Skip to content

Instantly share code, notes, and snippets.

@ndbroadbent
Last active February 1, 2021 06:12
Show Gist options
  • Save ndbroadbent/8e1a2b86ffea401756ba to your computer and use it in GitHub Desktop.
Save ndbroadbent/8e1a2b86ffea401756ba to your computer and use it in GitHub Desktop.
Fix Spotify Icon (Rotate by 5 degrees, tweak curves)
#!/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."
@kganeshchandan
Copy link

gg

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment