터미널을 통해 Magic Trackpad 옵션을 설정할 수 있습니까?


답변:


4

기본값을 사용하여 속성 목록을 편집 할 수 있습니다. 그러나 Magic Trackpads와 랩톱 트랙 패드는 서로 다른 설정을 가지고 있으며 서로 다른 버전의 OS X에 다른 위치에 저장됩니다.

여기에있는 몇 가지 명령이 있습니다. @MathiasBynens 작성 .osx 파일 :

# Trackpad: enable tap to click for this user and for the login screen
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true
defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 1

# Trackpad: map bottom right corner to right-click
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadCornerSecondaryClick -int 2
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRightClick -bool true
defaults -currentHost write NSGlobalDomain com.apple.trackpad.trackpadCornerClickBehavior -int 1
defaults -currentHost write NSGlobalDomain com.apple.trackpad.enableSecondaryClick -bool true

# Trackpad: swipe between pages with three fingers
defaults write NSGlobalDomain AppleEnableSwipeNavigateWithScrolls -bool true
defaults -currentHost write NSGlobalDomain com.apple.trackpad.threeFingerHorizSwipeGesture -int 1
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerHorizSwipeGesture -int 1

첫 번째 것들 탭하여 로그인 화면을 클릭하지 못하게하십시오. 마운틴 라이온. -currentHost 모든 경우에 필요하지는 않습니다. 파일을 다음과 같이 수정합니다. ~/Library/Preferences/ByHost/ 현재 컴퓨터에만 해당되며 파일의 우선 순위는 다음과 같습니다. ~/Library/Preferences/.

너는 할 수있다. diff 디폴트 출력 읽기 환경 설정을위한 키를 찾을 수 있습니다.

다음 질문을 참조하십시오 :


.osx 파일의 모든 것을 담요로 덮어 쓰는 것을 절대로 꿈꾸지는 못했지만, 그것은 살아있는 훌륭한 참고 자료입니다. 심지어 특정 버전도 있습니다.
Jason Salaz

내 생각에 .osx 부패하기 시작했다. 그것은 소프트 리디렉션 인 것 같습니다. github.com/mathiasbynens/dotfiles/blob/master/.macos
Ben Leggiero
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.