Skip to content

Instantly share code, notes, and snippets.

@tcodes0
Last active October 11, 2019 14:05
Show Gist options
  • Save tcodes0/8ea529dceeabc7454eb2c2ca1c78efcf to your computer and use it in GitHub Desktop.
Save tcodes0/8ea529dceeabc7454eb2c2ca1c78efcf to your computer and use it in GitHub Desktop.
# paste code into bash/zsh
hidedesktop() {
local state && state=$(defaults read com.apple.finder CreateDesktop)
if [ "$state" == "true" ]; then
defaults write com.apple.finder CreateDesktop false
else
defaults write com.apple.finder CreateDesktop true
fi
killall Finder
}
# > hidedesktop // hides icons
# > hidedesktop // shows icons
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment