如何使 Debian 10、Cinnamon 的 3 指点击触摸板充当鼠标中键

如何使 Debian 10、Cinnamon 的 3 指点击触摸板充当鼠标中键

我通过 virtualbox 在 Debian 10 上使用 Cinnamon,“鼠标和触摸板”设置似乎不允许我将 3 指触摸板点击配置为鼠标中键。

我还能怎样做呢?

答案1

要启用三指点击,请编辑以下配置文件/etc/X11/xorg.conf.d

sudo nano /etc/X11/xorg.conf.d/40-libinput.conf

如下:

Section "InputClass"
        Identifier "libinput touchpad catchall"
        #MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
        Option "Tapping" "on"
        Option "TappingButtonMap" "lmr"
EndSection

Arch-linux wiki 上有记录:按钮重新映射

将两指和三指点击替换为触摸板就是一个简单的例子。您可以通过TappingButtonMap在 Xorg 配置文件中设置选项来配置两指点击粘贴,而不是默认的三指点击粘贴。要将 1/2/3 指轻击设置为左/右/中,请将TappingButtonMap其设置lrm为 ,将左/中/右设置为lmr

Section "InputClass"
     Identifier "touchpad"
     Driver "libinput"
     MatchIsTouchpad "on"
     Option "Tapping" "on"
     Option "TappingButtonMap" "lmr"
 EndSection

注意:如果您的设备不是触摸板,请记住将其移除MatchIsTouchpad "on"并相应地调整标识符。

相关内容