Created
March 1, 2016 00:13
-
-
Save aradnom/0b26af79ce3982acda71 to your computer and use it in GitHub Desktop.
Hide/show desktop icons on OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Hide icons | |
defaults write com.apple.finder CreateDesktop -bool false && killall Finder | |
# Show 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