#002
posted on 2020.12.26
MacのFinderに隠しファイル表示とタイトルバーにパス表示。
隠しファイルを表示
ターミナルで設定にtrueを書き込む。
defaults write com.apple.finder AppleShowAllFiles -boolean true
Finderを再起動。
killall Finder
元に戻す場合は設定を削除して再起動。
defaults delete com.apple.finder AppleShowAllFiles
killall Finder
Finderのタイトルバーにフルパスを表示
ターミナルで設定にtrueを書き込む。
defaults write com.apple.finder _FXShowPosixPathInTitle -boolean true
Finderを再起動。
killall Finder
元に戻す場合は設定を削除して再起動。
defaults delete com.apple.finder _FXShowPosixPathInTitle
killall Finder