Skip to content

Instantly share code, notes, and snippets.

@guilhermef
guilhermef / chew-on-my-ram-spotify.sh
Created November 3, 2016 19:28
Stop spotify from destroying your SSD
#!/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!'