Created
September 22, 2013 17:50
-
-
Save jvlahos/6662210 to your computer and use it in GitHub Desktop.
Quickly show/hide your desktop icons. Good for presentations or taking clean desktop screenshots / photos. Add it to the bottom of your .bash_profile file. Then run 'hideDesktop' or 'showDesktop' in your terminal.
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
alias hideDesktop='defaults write com.apple.finder CreateDesktop -bool false; killall Finder' | |
alias showDesktop='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