Skip to content

Instantly share code, notes, and snippets.

@brod-ie
Created April 8, 2014 02:22
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 brod-ie/10083725 to your computer and use it in GitHub Desktop.
Save brod-ie/10083725 to your computer and use it in GitHub Desktop.
OS X: Save to disk (not to iCloud) by default
#!/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