我的旧笔记本电脑(三星 np300v3a,运行全新 Ubuntu 18.04)的左触控板按钮坏了,总是被按下。我一直在尝试禁用物理按键,但为了保留触控板的这种使用方式,我保留了点击功能。
我尝试修改 xinput 按钮映射、set-props 和一些 synclient 选项。我可以用 xinput 禁用左键单击,但这也会禁用点击功能。
答案1
如果你升级到至少 Ubuntu 18.10 或 19.04,有一个简单的方法:
创建文件(和目录):
/etc/libinput/local-overrides.quirks
输入以下内容:
[disable physical button of touchpad]
MatchUdevType=touchpad
MatchBus=ps2
AttrEventCodeDisable=BTN_LEFT
它在我的 sony vaio pro 13 上运行良好。您可能需要调整 Match* 行,请查看: https://wayland.freedesktop.org/libinput/doc/1.13.0/device-configuration-via-udev.html
祝你好运