Last active
April 9, 2024 14:35
-
-
Save umkl/7e0ee7b8841cd6ca582b51215bc8ed50 to your computer and use it in GitHub Desktop.
easily hide and show desktop icons on macos
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
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