Skip to content

Instantly share code, notes, and snippets.

@madalinignisca
Created November 25, 2023 10:00
Show Gist options
  • Save madalinignisca/92c26a64842f27b939e5199fd205ab5e to your computer and use it in GitHub Desktop.
Save madalinignisca/92c26a64842f27b939e5199fd205ab5e to your computer and use it in GitHub Desktop.
Hide / UnHide items on MacOS Desktop
# This will hide
defaults write com.apple.finder CreateDesktop -bool false; killall Finder
# This will show them back
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