Skip to content

Instantly share code, notes, and snippets.

@ckinsey
Created May 12, 2020 03:38
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 ckinsey/6a2e123fa77b8192b9167661be2bcaf8 to your computer and use it in GitHub Desktop.
Save ckinsey/6a2e123fa77b8192b9167661be2bcaf8 to your computer and use it in GitHub Desktop.
bathtub.sh
#!/bin/bash
# friday.hirelofty.com
on="1"
if [ $1 -eq $on ]
then
echo "Removing desktop icons and restarting finder"
defaults write com.apple.finder CreateDesktop false
killall Finder
else
echo "Restoring desktop icons and restarting finder"
defaults write com.apple.finder CreateDesktop true
killall Finder
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment