JavaScriptを有効にしてください

【えっご存知ない?】Macを買ったら動作を早く&ちょっと便利にするために最初に叩いとくべきコマンド17選

 ·  ☕ 2 分で読めます  ·  ✍️ saiki

私がMacを買った時に最初に叩くコマンドをまとめました。

アニメーションなどを短くして高速に、その他いくつか設定してちょっと便利に使えるようにしています。

スクリーンショットの保存場所変更とかは地味ですがやっとくと捗ります。

細かい解説は時間と需要があればそのうち。

これで爆速&便利だ!!!

叩いて動作に問題が出るようなものはないので考えるのが面倒な人はとりあえず叩いといてもいいんじゃないかなと思います。

一気にコピーできるようにコメントなしとコメントありを貼っておきます。

コメントなし(コピぺよう)

defaults write com.apple.finder DisableAllAnimations -boolean true; killall Finder
defaults write -g QLPanelAnimationDuration -float 0.15
defaults write com.apple.dock autohide-time-modifier -float 0.15;killall Dock
defaults write com.apple.dock autohide-delay -float 0;killall Dock
defaults write com.apple.dock expose-animation-duration -float 0.1;killall Dock
defaults write com.apple.dock workspaces-edge-delay -float 0.15;killall Dock
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool NO
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true;killall Finder
defaults write com.apple.Finder QuitMenuItem -bool true;killall Finder
defaults write com.apple.finder QLEnableTextSelection -bool true
defaults write com.apple.finder DisableAllAnimations -bool true;killall Finder
defaults write -g NSNavPanelExpandedStateForSaveMode -bool true
defaults write -g NSNavRecentPlacesLimit -int 10
defaults write -g NSWindowResizeTime 0.1
defaults write com.apple.finder FinderSounds -bool no;killall Finder
defaults write com.apple.screencapture location ~/Pictures/ScreenShot
defaults write com.apple.dock showhidden -bool true;killall Dock

 

コメントあり

//Finderのファイルを開くときのアニメーションを無効
defaults write com.apple.finder DisableAllAnimations -boolean true; killall Finder
//finderスペースでチラ見早く
defaults write -g QLPanelAnimationDuration -float 0.15
//ドック画面下の開くアニメーション早く
defaults write com.apple.dock autohide-time-modifier -float 0.15;killall Dock
//待ち時間も無くす
defaults write com.apple.dock autohide-delay -float 0;killall Dock
//コントロール上とかの速度早く
defaults write com.apple.dock expose-animation-duration -float 0.1;killall Dock
//アプリを隣のデスクトップに持っていくあにめーしょんを早く
defaults write com.apple.dock workspaces-edge-delay -float 0.15;killall Dock
//オートマチックウィンドウアニメーションオフ
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool NO
//ファインダーフルパスで表示
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true;killall Finder
//ファインダーを終了させる項目表示
defaults write com.apple.Finder QuitMenuItem -bool true;killall Finder
//クイックルックでもテキスト選択できるように
defaults write com.apple.finder QLEnableTextSelection -bool true
//ファインダーのアニメーション全無効(実感ない)
defaults write com.apple.finder DisableAllAnimations -bool true;killall Finder
//保存ダイアログをデフォルトで詳細表示に
defaults write -g NSNavPanelExpandedStateForSaveMode -bool true
//最近使ったフォルダ数を増やす最大10
defaults write -g NSNavRecentPlacesLimit -int 10
//ダイアログ表示やウィンドウのリサイズアニメーションを早く
defaults write -g NSWindowResizeTime 0.1
//ファインダーの効果音無効
defaults write com.apple.finder FinderSounds -bool no;killall Finder

//スクリーンショットの保存先を変更//フォルダを事前に作る必要あり
defaults write com.apple.screencapture location ~/Pictures/ScreenShot

//アプリを隠したらDock上のアイコンを半透明に設定
defaults write com.apple.dock showhidden -bool true;killall Dock

 

これで安心。是非どうぞ。

ではまた。

 

共有

saiki
著者
saiki
Android App Developper