Created
October 20, 2014 08:02
-
-
Save julien-duponchelle/7dabff78bf06645e1a10 to your computer and use it in GitHub Desktop.
Usefull mac setting
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
#Use current directory as default search scope in Finder | |
defaults write com.apple.finder FXDefaultSearchScope -string "SCcf" | |
#Show Path bar in Finder | |
defaults write com.apple.finder ShowPathbar -bool true | |
#Show Status bar in Finder | |
defaults write com.apple.finder ShowStatusBar -bool true | |
#Enable AirDrop over Ethernet and on unsupported Macs running Lion | |
#defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool true | |
#Enable Safari’s debug menu | |
defaults write com.apple.Safari IncludeInternalDebugMenu -bool true | |
#Add a context menu item for showing the Web Inspector in web views | |
defaults write NSGlobalDomain WebKitDeveloperExtras -bool true | |
#Show the ~/Library folder | |
chflags nohidden ~/Library |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment