Last active
June 3, 2022 22:25
-
-
Save florianpasteur/aa8b110aee4637b62f7e2065660d1512 to your computer and use it in GitHub Desktop.
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
## FINDER | |
# show file extension | |
defaults write NSGlobalDomain AppleShowAllExtensions -bool true | |
# quit options | |
defaults write com.apple.finder QuitMenuItem -bool true; | |
# full path in title | |
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true | |
# list view | |
defaults write com.apple.Finder FXPreferredViewStyle Nlsv | |
# Flwv ▸ Cover Flow View | |
# Nlsv ▸ List View | |
# clmv ▸ Column View | |
# icnv ▸ Icon View | |
# disable extension change warning | |
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false | |
# show hidden files | |
defaults write com.apple.Finder AppleShowAllFiles -bool true | |
# folder first | |
defaults write com.apple.finder _FXSortFoldersFirst -bool true | |
# always show scrollbar | |
defaults write NSGlobalDomain AppleShowScrollBars -string "Always" | |
## Dock | |
# show recent apps | |
defaults write com.apple.dock "show-recents" -bool "false" | |
## Sources | |
# https://www.defaults-write.com/cat/finder/ | |
# https://macos-defaults.com/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment