Skip to content

Instantly share code, notes, and snippets.

@umkl
Last active April 9, 2024 14:35
Show Gist options
  • Save umkl/7e0ee7b8841cd6ca582b51215bc8ed50 to your computer and use it in GitHub Desktop.
Save umkl/7e0ee7b8841cd6ca582b51215bc8ed50 to your computer and use it in GitHub Desktop.
easily hide and show desktop icons on macos
alias hide-desktop="defaults write com.apple.finder CreateDesktop false; killall Finder"
alias show-desktop="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