Skip to content

Instantly share code, notes, and snippets.

@explorador
Last active May 3, 2020 00:01
Show Gist options
  • Save explorador/e0bb10192cdbe3da9d8f1b496755f851 to your computer and use it in GitHub Desktop.
Save explorador/e0bb10192cdbe3da9d8f1b496755f851 to your computer and use it in GitHub Desktop.
Deletes Spotify Cache on MacOS
# Deletes Spotify Cache
# (Run this when app starts running slow)
spotifycache() {
# (zshell only) Do not query the user before executing ‘rm *’ or ‘rm path/*’.
setopt localoptions rmstarsilent
# Clear cache files
\rm -fr ~/Library/Caches/com.spotify.client/Browser/*
\rm -fr ~/Library/Caches/com.spotify.client/Data/*
\rm -fr ~/Library/Caches/com.spotify.client/fsCachedData/*
echo 'Cache Cleared!'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment