Last active
January 30, 2016 07:43
-
-
Save alundiak/c9d268000201155de4e2 to your computer and use it in GitHub Desktop.
Script, which sets some OS X defaults into non-default state
This file contains hidden or 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
# 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