-
-
Save brod-ie/10083725 to your computer and use it in GitHub Desktop.
OS X: Save to disk (not to iCloud) by default
This file contains 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
#!/bin/bash | |
# Ask for the administrator password upfront | |
sudo -v | |
# Save to disk (not to iCloud) by default | |
defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false | |
# Kill finder | |
killall "Finder" > /dev/null 2>&1 | |
# Fin | |
echo "Done. You may require a logout/restart to take effect." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment