Skip to content

Instantly share code, notes, and snippets.

@florianpasteur
Last active June 3, 2022 22:25
Show Gist options
  • Save florianpasteur/aa8b110aee4637b62f7e2065660d1512 to your computer and use it in GitHub Desktop.
Save florianpasteur/aa8b110aee4637b62f7e2065660d1512 to your computer and use it in GitHub Desktop.
## 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