2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

2024-03 Mac(M3 MacBook Air) セットアップ記録

Last updated at Posted at 2024-03-24

memo:

基礎系

Homebrew のインストール

Macのパッケージマネージャ
これないと生きていけないので入れる。

$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
$ eval "$(/opt/homebrew/bin/brew shellenv)"

mas-cli のインストール

cliでApp Store(Mac)の操作ができるツール
GUI操作めんどいので入れる。

$ brew install mas

Google Chromeのインストール

ブラウザ
これないと生きていけないので入れる。

$ brew install google-chrome

操作支援系

ATOKのインストール

日本語入力(有料)
Macデフォルトの日本語入力やGoogle日本語入力が使いづらいので入れる。

$ brew install --cask atok

BetterTouchToolのインストール

キーボードショートカットやウインドウのスナップを追加するツール(有料)
Windowsのウインドウスナップみたいな操作したいので入れる。

$ brew install --cask bettertouchtool

DisplayLinkのインストール

USB-グラフィック変換のドライバ&ソフトウェア
M1, M2, M3 Macは外部グラフィックスの数に制限があるが、これはそれを突破できる(2枚以上のディスプレイつなげられる)ので入れる。

$ brew install --cask displaylink

ShareMouseのインストール

マウス・キーボードをネットワーク経由で同期し、他のPCを手元にあるマウス・キーボードで操作するツール(有料)
MacBookAirのキーボード・トラックパッドですべての端末を操作したいので入れる。

$ brew install --cask sharemouse

HyperSwitchのインストール

アプリ単位では無くウインドウ単位(同時に画面のスクリーンショットも表示される)でCmd+Tab切替をするツール
アプリ単位の切替は使いづらいので入れる

SpotlightのキーボードショートカットをCmdからCtrlに変更する

デフォルトのショートカットが遠いんで。

Keyboard -> Keyboard shortcutes -> Spotlight

キーリピートの速度を上げる

デフォルトの速度が遅いんで。

$ defaults write -g InitialKeyRepeat -int 10
$ defaults write -g KeyRepeat -int 1

開発系

Biscuit Browserのインストール

複数のWebアプリをまとめて扱える便利ブラウザ

$ brew install --cask biscuit

iterm2のインストール

端末エミュレータ

$ brew install --cask iterm2

NoSleepのインストール

デモとか処理途中で立ち上げっぱなしにしたいときがあるので。

$ mas search nosleep
$ mas install 435040864

スクリーンショットに影が入らないようにする

邪魔なので。

$ defaults write com.apple.screencapture disable-shadow -boolean true
$ killall SystemUIServer

スクリーンショットの保存先を変更する

デフォルトはデスクトップだが、デスクトップが汚くなってしまうので。

$ mkdir ~/screenshots
$ defaults write com.apple.screencapture location ~/screenshots
$ killall SystemUIServer

コミュニケーション系

基本Webアプリで済めばいいのだが、Webアプリとして提供されていないものもあるので。

LINEのインストール

$ mas search LINE
$ mas install 539883307

Zoomのインストール

$ brew install --cask zoom

Officeのインストール

$ brew install --cask microsoft-office
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?