LoginSignup
1
0

More than 1 year has passed since last update.

【備忘録】キーリピートの設定

Last updated at Posted at 2022-01-19

リピート入力認識の速度をあげる

# 現在の設定は以下のコマンドで確認
$ defaults read -g InitialKeyRepeat

# リピート入力認識を上げる
$ defaults write -g InitialKeyRepeat -int 12

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

# 現在の設定は以下のコマンドで確認
$ defaults read -g KeyRepeat

# キーリピートの速度を上げる
$ defaults write -g KeyRepeat -int 1

Macの再起動

上記コマンドを実行後、Macを再起動後キーリピートが速くなる

(補足)元に戻したい場合

# リピート入力認識速度を初期化
$ defaults delete -g InitialKeyRepeat

# キーリピート速度を初期化
$ defaults delete -g KeyRepeat

補足

カーソルのエフェクトツール

1
0
1

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
0