Skip to content

Instantly share code, notes, and snippets.

@thomasjo
Created January 23, 2014 17:29
Show Gist options
  • Save thomasjo/8582997 to your computer and use it in GitHub Desktop.
Save thomasjo/8582997 to your computer and use it in GitHub Desktop.
Shell script that replaces the default Sublime Text icon on OS X with a much nicer looking icon
#!/usr/bin/bash
cp /Applications/Sublime\ Text.app/Contents/Resources/Sublime\ Text.icns /Applications/Sublime\ Text.app/Contents/Resources/Sublime\ Text.icns.orig
curl https://raw.github.com/dmatarazzo/Sublime-Text-2-Icon/master/Sublime%20Text%202.icns -o /Applications/Sublime\ Text.app/Contents/Resources/Sublime\ Text.icns
cp -R /Applications/Sublime\ Text.app /Applications/Sublime\ Text.app.hack
rm -rf /Applications/Sublime\ Text.app
mv /Applications/Sublime\ Text.app.hack /Applications/Sublime\ Text.app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment