LoginSignup
1
2

More than 3 years have passed since last update.

Mac コマンドラインからできる便利な設定

Last updated at Posted at 2019-09-05

以下を端末にコピー&ペーストして設定をする.

#現在開いているフォルダのフルパスを表示
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

参考にしたページ

Macの隠された設定を変更する84個のハック集

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2