Created
August 25, 2016 15:36
-
-
Save robertcedwards/81d14e876303727568743c4d74e20213 to your computer and use it in GitHub Desktop.
Hide files/icons on the desktop but not in finder - http://apple.stackexchange.com/questions/79677/hide-files-icons-on-the-desktop-but-not-in-finder
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
In the terminal, do this: | |
defaults write com.apple.finder CreateDesktop -bool false && killall Finder | |
After this, there'll be nothing on your Desktop (but still in ~/Desktop, i.e. your Desktop Folder). It'll look like this: | |
Clean Desktop | |
Beautiful, isn't it? If you want to change it back: | |
defaults write com.apple.finder CreateDesktop -bool true && killall Finder | |
enter image description here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment