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
# 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;' | |
NewerOlder