Skip to content

Instantly share code, notes, and snippets.

@miguelsolorio
Created August 7, 2018 20:30
Show Gist options
  • Save miguelsolorio/0c2b11496946ee85e68c42471672e4a8 to your computer and use it in GitHub Desktop.
Save miguelsolorio/0c2b11496946ee85e68c42471672e4a8 to your computer and use it in GitHub Desktop.
Hide and Show Desktop Files
# ~/.bash_profile
# Hide Desktop files
alias hideDesktop='defaults write com.apple.finder CreateDesktop false; killall Finder'
# Show Desktop files
alias showDesktop='defaults write com.apple.finder CreateDesktop true; killall Finder'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment