gakkie プログラミング 備忘録

tech::expert(現tech camp) 45期

Macの設定の変更。おすすめコマンド集

ファインダーに絶対パスを表示

$ defaults write com.apple.finder _FXShowPosixPathInTitle -bool true

ウィンドウのアニメーションを無効化

$ defaults write com.apple.finder AnimateWindowZoom -bool false

Macで端っこまでスクロールさせた時に跳ねるエフェクトを無効化 

$ defaults write -g NSAutomaticWindowAnimationsEnabled -bool false

メニューバーの自動非表示の遅延を変更

$ defaults write com.apple.dock autohide-delay -float 0

隠れたDockの表示速度を高速化する

$ defaults write com.apple.dock autohide-time-modifier -float 0

$ defaults write com.apple.dock position-immutable -bool true

「Dockを自動的に隠す」という設定を変更不可にする。

defaults write com.apple.dock autohide-immutable -bool true

元に戻す

defaults delete com.apple.dock autohide-immutable $ killall Dock

$ defaults write com.apple.dock expose-animation-duration -float 0.1

$ defaults write com.apple.dock workspaces-edge-delay -float 0.2

$ defaults write com.apple.dock springboard-show-duration -int 0

$ defaults write com.apple.dock springboard-hide-duration -int 0

$ defaults write com.apple.screencapture disable-shadow -bool true

$ killall SystemUIServer

$ defaults write com.apple.helpviewer DevMode -bool true

$ defaults write com.apple.finder FinderSounds -bool no

$ defaults write com.apple.finder AppleShowAllFiles true

設定を反映させるためのコマンド

$ killall SystemUIServer 

マウスポインタの移動スピードをあげるコマンド

$ defaults write "Apple Global Domain" com.apple.mouse.scaling 3

 隠れたDockの表示速度を高速化する

$ defaults write com.apple.dock autohide-time-modifier -int 0; killall Dock