Created
April 9, 2012 03:05
-
-
Save kdwolski/2341101 to your computer and use it in GitHub Desktop.
Mac show/hide desktop icons via terminal alias command
This file contains 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
# Show/Hide desktop icons via command line alias | |
# Add this to .bash_profile | |
# http://osxdaily.com/2009/09/23/hide-all-desktop-icons-in-mac-os-x/ | |
alias hidedesk='defaults write com.apple.finder CreateDesktop -bool false; killall Finder;' | |
alias showdesk='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