I recently blew my computer away and re-built everything from scratch. IA lot of cruft had built up, and instead of trying to scour my computer, I just punted and started all over.
One of the things I’ve done is adopted a kind of “Downloads Zero” approach (akin to “Inbox Zero“): I had built up a lot of crap in the Downloads folder, and I had become afraid of what to throw away and what was important. This ate up a bunch of hard drive and was generally a source of low-grade anxiety that I didn’t need. So I’ve implemented a new plan: each I log into my computer, I wipe the Downloads folder completely. This means that if something’s important in Downloads, I have to consciously move it out of that folder and into someplace else. So far, it’s going great: there’s a surprisingly refreshing feeling when I see an empty Downloads folder!
To implement this on OS-X, create a folder named ~/logs and a file named ~/bin/cleanup_downloads.command with the following content:
name=cleanup_downloads rm -PRf ~/Downloads/* 1> /dev/null 2> /dev/null
Then, in System Preferences > Accounts > Login Items, click the little + and select ~/bin/cleanup_downloads.command.
Related posts: