Skip to content

Instantly share code, notes, and snippets.

@alundiak
Last active January 30, 2016 07:43
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 alundiak/c9d268000201155de4e2 to your computer and use it in GitHub Desktop.
Save alundiak/c9d268000201155de4e2 to your computer and use it in GitHub Desktop.
Script, which sets some OS X defaults into non-default state
# http://osxdaily.com/2010/02/12/how-to-quit-the-finder/
defaults write com.apple.finder QuitMenuItem -bool true && killall Finder # false #default
# Finder. Show All
defaults write com.apple.finder AppleShowAllFiles true #false #default
# Enable the debug menu and restart the Mac App Store.
defaults write com.apple.appstore ShowDebugMenu -bool true # false #default
# Use Plain Text Mode as Default
defaults write com.apple.TextEdit RichText -int 0 # or -bool false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment