Skip to content

Instantly share code, notes, and snippets.

View Au1st3in's full-sized avatar
💭
I may be slow to respond.

Austin Rocha Au1st3in

💭
I may be slow to respond.
View GitHub Profile
@kdwolski
kdwolski / show-hide-icons
Created April 9, 2012 03:05
Mac show/hide desktop icons via terminal alias command
# Show/Hide desktop icons via command line alias
# Add this to .bash_profile
# http://osxdaily.com/2009/09/23/hide-all-desktop-icons-in-mac-os-x/
alias hidedesk='defaults write com.apple.finder CreateDesktop -bool false; killall Finder;'
alias showdesk='defaults write com.apple.finder CreateDesktop -bool true; killall Finder;'