Skip to content

Instantly share code, notes, and snippets.

@kazoompah
Forked from AllanLRH/doNotUpdateSpotify.sh
Created June 14, 2018 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kazoompah/bd9682690f0d232aae723405e0a9c66d to your computer and use it in GitHub Desktop.
Save kazoompah/bd9682690f0d232aae723405e0a9c66d to your computer and use it in GitHub Desktop.
Disable Spotify autoupdate on Mac OS X (testet on Yosemite).
# This script prevents Spotifys Autoupdating on OS X (testet on Yosemite)
# Based on this tutorial:
# http://supraliminal.net/blog/2013/4/21/how-to-revert-back-to-the-older-better-spotify-client
#
# This script must be run as root:
# sudo sh doNotUpdateSpotify.sh
#
FILE="/tmp/out.$$"
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root"
echo "-------------------------------------------"
echo "This is what you should type into terminal:"
echo "sudo sh doNotUpdateSpotify.sh"
exit 1
fi
filepath1="/Users/$SUDO_USER/Library/Application Support/Spotify/Spotify_new.archive"
filepath2="/Users/$SUDO_USER/Library/Application Support/Spotify/Spotify_new.archive.sig"
[[ -f "$filepath1" ]] && rm -f "$filepath1"
[[ -f "$filepath2" ]] && rm -f "$filepath2"
touch "$filepath1"
touch "$filepath2"
chflags uchg "$filepath1" # Lock file in which the downloaded update is stored, thus preventing an update
chflags uchg "$filepath2"
echo "---------------------------------------"
echo "| Spotify will no longer be updated |"
echo "---------------------------------------"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment