Created
November 18, 2018 10:40
-
-
Save borekb/58be4e1c46f76d0dad1baf4b6455b196 to your computer and use it in GitHub Desktop.
macOS finder customizations
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
# 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