Skip to content

Instantly share code, notes, and snippets.

@thiemo
Created September 9, 2014 14:06
Show Gist options
  • Save thiemo/9e1442777d2780f39439 to your computer and use it in GitHub Desktop.
Save thiemo/9e1442777d2780f39439 to your computer and use it in GitHub Desktop.
Hide/show desktop icons on Mac OS X
# hide os x desktop icons
defaults write com.apple.finder CreateDesktop -bool false
killall Finder
# show os x desktop icons
defaults write com.apple.finder CreateDesktop -bool true
killall Finder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment