Kensington Expert 鼠标拖动按钮

Kensington Expert 鼠标拖动按钮

我想更改按钮映射并添加拖动功能

:~$ xinput list-props 10
Device 'Kensington USB/PS2 Wheel Mouse ':
    Device Enabled (148):   1
    Coordinate Transformation Matrix (150): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    libinput Accel Speed (285): 0.000000
    libinput Accel Speed Default (286): 0.000000
    libinput Accel Profiles Available (287):    1, 1
    libinput Accel Profile Enabled (288):   1, 0
    libinput Accel Profile Enabled Default (289):   1, 0
    libinput Natural Scrolling Enabled (290):   0
    libinput Natural Scrolling Enabled Default (291):   0
    libinput Send Events Modes Available (270): 1, 0
    libinput Send Events Mode Enabled (271):    0, 0
    libinput Send Events Mode Enabled Default (272):    0, 0
    libinput Left Handed Enabled (292): 0
    libinput Left Handed Enabled Default (293): 0
    libinput Scroll Methods Available (294):    0, 0, 1
    libinput Scroll Method Enabled (295):   0, 0, 0
    libinput Scroll Method Enabled Default (296):   0, 0, 0
    libinput Button Scrolling Button (297): 2
    libinput Button Scrolling Button Default (298): 2
    libinput Middle Emulation Enabled (299):    0
    libinput Middle Emulation Enabled Default (300):    0
    Device Node (273):  "/dev/input/event4"
    Device Product ID (274):    1149, 4098
    libinput Drag Lock Buttons (301):   <no items>
    libinput Horizontal Scroll Enabled (302):   1

如果我添加拖动功能

xinput-set-prop 10 301 1

只有第一个按钮具有拖动功能,但是必须是第三或第四个按钮。我该怎么办?

谢谢

答案1

它的工作方式如下:

xinput -set-prop 11 299 3 1

忽略我的计算机特有的 11 和 299,但在这种情况下,它表示 3 是 1 的锁定按钮。

您还可以将按钮设置为自己的锁定按钮,例如:

xinput -set-prop 11 299 1 1

欲了解更多信息,请查看man libinput“DragLockButtons”选项。

相关内容