Linux Mint 20.2 Cinnamon의 성가신 멀티 터치 동작 Elantech 터치패드

Linux Mint 20.2 Cinnamon의 성가신 멀티 터치 동작 Elantech 터치패드

최근에 Linux Mint 20.2 Cinnamon을 설치했습니다.
터치패드의 여러 손가락 동작은 이상하고 짜증스럽습니다. 두 손가락으로 정확히 동시에 탭하면 오른쪽 클릭이 되고, 한 손가락이 다른 손가락보다 조금 늦게 닿으면 가운데 클릭이 됩니다. 세 손가락 탭이 작동하지 않습니다. 변화클릭 동작존재하다마우스 및 터치패드효과가없는 것 같습니다. 현재는 비활성화했습니다.클릭해서 클릭하세요실행 중 실수로 붙여넣기, 탭 닫기, 링크 열기 등을 방지합니다.두 손가락 스크롤아니면 탭하세요.

$ xinput --list-props X다음은 명령의 출력 입니다 .

$ xinput --list-props 13
Device 'ETPS/2 Elantech Touchpad':
    Device Enabled (166):   1
    Coordinate Transformation Matrix (168): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    libinput Tapping Enabled (301): 1
    libinput Tapping Enabled Default (302): 0
    libinput Tapping Drag Enabled (303):    1
    libinput Tapping Drag Enabled Default (304):    1
    libinput Tapping Drag Lock Enabled (305):   0
    libinput Tapping Drag Lock Enabled Default (306):   0
    libinput Tapping Button Mapping Enabled (307):  1, 0
    libinput Tapping Button Mapping Default (308):  1, 0
    libinput Natural Scrolling Enabled (309):   1
    libinput Natural Scrolling Enabled Default (310):   0
    libinput Disable While Typing Enabled (311):    0
    libinput Disable While Typing Enabled Default (312):    1
    libinput Scroll Methods Available (313):    1, 1, 0
    libinput Scroll Method Enabled (314):   1, 0, 0
    libinput Scroll Method Enabled Default (315):   1, 0, 0
    libinput Accel Speed (316): 0.000000
    libinput Accel Speed Default (317): 0.000000
    libinput Left Handed Enabled (318): 0
    libinput Left Handed Enabled Default (319): 0
    libinput Send Events Modes Available (286): 1, 1
    libinput Send Events Mode Enabled (287):    0, 1
    libinput Send Events Mode Enabled Default (288):    0, 0
    Device Node (289):  "/dev/input/event5"
    Device Product ID (290):    2, 14
    libinput Drag Lock Buttons (320):   <no items>
    libinput Horizontal Scroll Enabled (321):   1

편집을 하려고 하는데libinput을 사용하면 클릭 버튼 매핑이 가능합니다(307).통과 $ xinput --set-prop 13 307 X Y. 0 1로 변경해도 아무런 효과가 없습니다. 다른 값은 오류를 반환합니다.

Windows에서는 터치패드가 두 손가락 및 세 손가락 작업에 잘 작동합니다. 나는 Ubuntu와 이전 버전의 Linux Mint도 작동할 것이라고 생각합니다. 외부 마우스는 훌륭하게 작동합니다.

세 손가락 가운데 버튼과 두 손가락 버튼을 어떻게 설정해야 하나요?오직마우스 오른쪽 버튼으로 클릭? (또는 적어도 두 손가락 가운데 클릭을 비활성화하십시오)

답변1

가운데 클릭을 완전히 비활성화했습니다.

xinput set-button-map <Touchpad ID> 1 0 3 4 5 6 7
                                      ^
                                Middle click

마우스 오른쪽 버튼 클릭과 가운데 클릭 동작을 바꿀 수도 있습니다.

xinput --set-prop <Touchpad ID> <Tapping Button Mapping Enabled ID>  0 1

관련 정보