This file contains hidden or 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/bash | |
echo 'Creating Ram Disk' | |
diskutil erasevolume HFS+ 'RAM Disk' `hdiutil attach -nomount ram://102400` | |
echo 'Removing old spotify Cache' | |
rm -rf ~/Library/Application\ Support/Spotify/PersistentCache | |
echo 'Giving spotify something to chew on' | |
ln -s /Volumes/RAM\ Disk ~/Library/Application\ Support/Spotify/PersistentCache | |
echo 'Done!' |