Skip to content

Instantly share code, notes, and snippets.

@julien-duponchelle
Created October 20, 2014 08:02
Show Gist options
  • Save julien-duponchelle/7dabff78bf06645e1a10 to your computer and use it in GitHub Desktop.
Save julien-duponchelle/7dabff78bf06645e1a10 to your computer and use it in GitHub Desktop.
Usefull mac setting
#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