抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

本文教你如何配置触控板的手势,以 Arch Linux 为例,桌面环境为 KDE。

  • libinput-gestures: 使用libinput在触摸板上执行动作手势
  1. 将当前用户加入到input组(您必须是input用户组的成员才具有读取触控板设备的权限)
1
sudo gpasswd -a $USER input

注意,注销用户或重启以生效

  1. 安装 libinput-gestures
1
2
3
git clone https://aur.archlinux.org/libinput-gestures.git
cd libinput-gestures
makepkg -si
  1. 开启相应服务并设为开机自启
1
2
libinput-gestures-setup autostart
libinput-gestures-setup start
  1. 编辑配置文件
1
2
cp /etc/libinput-gestures.conf ~/.config/libinput-gestures.conf
vim ~/.config/libinput-gestures.conf

在文件的末尾追加如下内容

1
2
3
4
gesture swipe down 3	xdotool key ctrl+F12    # 三指下滑回到桌面
gesture swipe up 3 xdotool key ctrl+F10 # 三指上滑查看窗口
gesture swipe right 4 xdotool key meta+Tab # 四指右滑切换窗口
gesture swipe left 4 xdotool key meta+Tab # 四指左滑切换窗口
  1. 然后在 「System Settings 系统设置」 -> 「Input Devices 输入设备」 -> 「Touchpad 触控板」 -> 启用 「Tap-to-click 轻触点击」 和 「Tap-and-drag 连续轻触2下拖拽

最后,注销用户或重启生效。

评论