Last active
January 5, 2016 16:29
-
-
Save robinhayward/dbf8073ed75323072b3a to your computer and use it in GitHub Desktop.
Clean Desktop
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
// Go clean | |
// Removes all the icons from your desktop and prevents you adding any | |
defaults write com.apple.finder CreateDesktop -bool false && killall Finder | |
// Go back to normal | |
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