Skip to content

Instantly share code, notes, and snippets.

@borekb
Created November 18, 2018 10:40
Show Gist options
  • Save borekb/58be4e1c46f76d0dad1baf4b6455b196 to your computer and use it in GitHub Desktop.
Save borekb/58be4e1c46f76d0dad1baf4b6455b196 to your computer and use it in GitHub Desktop.
macOS finder customizations
# Finder: show full path in title
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
# Finder: show all filename extensions
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
# Finder: show status bar
defaults write com.apple.finder ShowStatusBar -bool true
# Finder: allow text selection in Quick Look
defaults write com.apple.finder QLEnableTextSelection -bool true
# Disable the warning when changing a file extension
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment