
민감한 문제가 있습니다. 저는 Mac Mini와 함께 PQ Labs의 대형 멀티 터치 화면을 사용합니다. 전체 화면 모드로 애플리케이션을 실행하는 전시회에서 사용됩니다. 그러나 OS X에는 전체 화면 모드를 종료하기 위한 터치 제스처(모든 손가락을 모으기)가 내장되어 있으므로 사용자가 실수로 데스크톱으로 앱을 종료할 수 있습니다. 문제는 Mac이 터치 패드와 같은 터치 장치를 감지하지 못한 경우 시스템 환경설정의 제스처 설정에 액세스할 수 없다는 것입니다. 제 경우에는 PQ Labs 화면에 자체 드라이버가 있어서 OS X에서 터치 장치로 감지되지 않으므로 제스처를 비활성화할 수 없습니다. 시작할 때 스크립트 등을 사용하여 이 문제를 해결할 수 있는 방법이 있나요?
답변1
활성화된 트랙패드가 없으므로 시스템 환경설정에서 설정을 변경하려면 Apple 트랙패드를 빌려야 할 수도 있습니다. 그렇지 않은 경우 다음과 같이 작동할 수 있습니다.
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFourFingerPinchGesture -int 0
이 값을 0으로 설정~해야 한다설정을 비활성화합니다. 다시 한번 말씀드리지만, 이것이 귀하의 터치스크린에서 작동할지는 잘 모르겠습니다.
시도해 볼 수 있는 다른 값은 다음과 같습니다.
탭하여 클릭 비활성화
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool false
마우스 오른쪽 버튼 클릭을 에뮬레이트하려면 두 손가락으로 탭하세요.
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRightClick -bool true
세 손가락 탭 활성화(조회)
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerTapGesture -int 2
세 손가락 드래그 비활성화
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerDrag -bool false
확대 또는 축소
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadPinch -bool true
스마트 확대/축소, 두 손가락으로 두 번 탭하기
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadTwoFingerDoubleTapGesture -bool true
회전
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRotate -bool true
알림 센터
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadTwoFingerFromRightEdgeSwipeGesture -int 3
두 손가락으로 페이지 간 스와이프
defaults write NSGlobalDomain AppleEnableSwipeNavigateWithScrolls -bool true
전체 화면 앱 간 스와이프
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerHorizSwipeGesture -int 2
다른 여러 손가락 제스처 활성화
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerVertSwipeGesture -int 2 defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFourFingerVertSwipeGesture -int 2 defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFourFingerHorizSwipeGesture -int 2 defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFiveFingerPinchGesture -int 2