Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lib/repave/mac_defaults_input.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ def initialize
"Enable full keyboard access for all controls (e.g., enable Tab in modal dialogs)":
"defaults write NSGlobalDomain AppleKeyboardUIMode -int 3",

"Increases key repeat rate, requires reboot to take effect":
[
"defaults write ~/Library/Preferences/.GlobalPreferences KeyRepeat -int 1",
"defaults write ~/Library/Preferences/.GlobalPreferences InitialKeyRepeat -int 15"
],

"Use scroll gesture with the Ctrl (^) modifier key to zoom":
[
"defaults write com.apple.universalaccess closeViewScrollWheelToggle -bool true",
Expand Down