Skip to content

Instantly share code, notes, and snippets.

@chasevida
Created October 1, 2014 20:18
Show Gist options
  • Save chasevida/5b80f4dc650f8add5143 to your computer and use it in GitHub Desktop.
Save chasevida/5b80f4dc650f8add5143 to your computer and use it in GitHub Desktop.
Hide/Show Desktop Icons in Mac OS X

Hide all desktop icons:

$ defaults write com.apple.finder CreateDesktop -bool false
$ killall Finder

Show all 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