Finderを終了させる項目を表示。command + Qで終了できるようになる
defaults write com.apple.Finder QuitMenuItem -bool true
元に戻す
defaults delete com.apple.Finder QuitMenuItem
現在開いているフォルダのフルパスを表示
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
元に戻す
defaults delete com.apple.finder _FXShowPosixPathInTitle
ダウンロードしたファイルを、初めて開く際に表示される警告ダイアログ。これを表示されないようにする
defaults write com.apple.LaunchServices LSQuarantine -bool false
元に戻す
defaults delete com.apple.LaunchServices LSQuarantine
ユーザーフォルダ直下のlibraryを表示する
chflags nohidden ~/Library
元に戻す
chflags hidden ~/Library
コメント