마우스 속도 높이기(xinput)

마우스 속도 높이기(xinput)

마우스 속도를 높이는 방법을 모르겠습니다. 몇 주 전에는 xset잘 작동했습니다. 이제 명령을 사용하여 속도를 높입니다.

xinput --set-prop 'USB OPTICAL MOUSE' 'libinput Accel Speed' 1

하지만 나에게는 충분하지 않습니다. 마우스에서 사용할 수 있는 옵션 목록:

Device 'USB OPTICAL MOUSE':
    Device Enabled (152):   1
    Coordinate Transformation Matrix (154): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    libinput Accel Speed (288):     1.000000
    libinput Accel Speed Default (289):     0.000000
    libinput Accel Profiles Available (290):        1, 1
    libinput Accel Profile Enabled (291):   1, 0
    libinput Accel Profile Enabled Default (292):   1, 0
    libinput Natural Scrolling Enabled (293):       0
    libinput Natural Scrolling Enabled Default (294):       0
    libinput Send Events Modes Available (273):     1, 0
    libinput Send Events Mode Enabled (274):        0, 0
    libinput Send Events Mode Enabled Default (275):        0, 0
    libinput Left Handed Enabled (295):     0
    libinput Left Handed Enabled Default (296):     0
    libinput Scroll Methods Available (297):        0, 0, 1
    libinput Scroll Method Enabled (298):   0, 0, 0
    libinput Scroll Method Enabled Default (299):   0, 0, 0
    libinput Button Scrolling Button (300): 2
    libinput Button Scrolling Button Default (301): 2
    libinput Middle Emulation Enabled (302):        0
    libinput Middle Emulation Enabled Default (303):        0
    Device Node (276):      "/dev/input/event2"
    Device Product ID (277):        2362, 9505
    libinput Drag Lock Buttons (304):       <no items>
    libinput Horizontal Scroll Enabled (305):       1

저는 Wayland가 아닌 X를 사용하고 있습니다.

답변1

변환 행렬을 적용해야 합니다.

 xinput --set-prop 'USB OPTICAL MOUSE' 'Coordinate Transformation Matrix' 2 0 0 0 2 0 0 0 1.5 

자세한 내용은 여기를 참조하세요:마우스 가속뿐만 아니라 마우스 감도를 어떻게 설정할 수 있나요?

관련 정보