Skip to content

Instantly share code, notes, and snippets.

@ap
Last active April 29, 2016 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ap/16857589032c28974cb9d95ce896e2a9 to your computer and use it in GitHub Desktop.
Save ap/16857589032c28974cb9d95ce896e2a9 to your computer and use it in GitHub Desktop.
Toggle MacOS Finder desktop icons on/off
#!/bin/sh
( defaults read com.apple.finder CreateDesktop 2>/dev/null || echo 1 ) | egrep -qxi '1|true|yes|on'
defaults write com.apple.finder CreateDesktop $? && killall Finder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment