系统相关
首页 > 系统相关> > ArchLinux 触控板配置

ArchLinux 触控板配置

作者:互联网

ArchLinux 触摸板配置

安装软件包

  1. 触摸板支持:yay -s xf86-input-libinput

基本配置

  1. 添加到用户组:sudo gpasswd -a $USER input
  2. 添加点击功能:
  1. 简单配置触摸板
属性 含义
"Tapping" 开启单击发送事件
TappingButtonMap lmr,单指左键,双指右键,三指中键
DisableWhileTyping 打字不检测鼠标事件
TappingDrag 点击托拽
Section "InputClass"
        Identifier "touchpad"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
        Option "Tapping" "on"
        Option "ButtonMapping" "1 3 0 4 5 6 7"
        Option "TappingButtonMap" "lmr"
        Option "DisableWhileTyping" "on"
        Option "TappingDrag" "on"
EndSection

进阶配置(手势)

  1. 手势支持:yay -s libinput-gestures
    • 映射工具:xdotool
  2. 配置手势
  1. 调试
  1. 参考

标签:触控板,Option,lnum,配置,gestures,ArchLinux,conf,libinput,debug
来源: https://www.cnblogs.com/luckyCoder/p/12732525.html