以下を端末にコピー&ペーストして設定をする.
# 現在開いているフォルダのフルパスを表示
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
# Finderを終了させる項目を表示
defaults write com.apple.Finder QuitMenuItem -bool true
# クイックルックで文字列を選択可能に
defaults write com.apple.finder QLEnableTextSelection -bool true
# 印刷ダイアログを詳細表示で開く
defaults write -g PMPrintingExpandedStateForPrint -bool true
# ダイアログの"最近使ったフォルダ"数を増やす
defaults write -g NSNavRecentPlacesLimit -int 10
# ネットワークボリュームに.DS_Storeを作らない
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
# Dockのフォルダ側に最近使ったアプリを表示
defaults write com.apple.dock persistent-others -array-add '{ "tile-data" = { "list-type" = 1; }; "tile-type" = "recents-tile"; }'
# アプリを隠したらDockアイコンを透過
defaults write com.apple.dock showhidden -bool true