我在三星 Serie 5 Ultra 530U3C A0L 笔记本电脑上使用全新安装的 18.10。
到目前为止,我真的很喜欢 Linux 体验,我需要的一切都对我来说是开箱即用的。唯一缺少的是点击以点击。我怎样才能激活它?我在 lxqt 中寻找了一个选项,但找不到。我用谷歌搜索了一下,发现这个:synclient tapbutton1=1 但在终端中输入这个没有帮助。
小智 24
这对我
有用 https://wiki.archlinux.org/index.php/Libinput#Touchpad_configuration
创建:
/etc/X11/xorg.conf.d/30-touchpad.conf
Run Code Online (Sandbox Code Playgroud)
内容:
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchIsTouchpad "on"
Option "Tapping" "on"
EndSection
Run Code Online (Sandbox Code Playgroud)
最后
reboot
Run Code Online (Sandbox Code Playgroud)
小智 17
通过命令行使用 xinput激活点击点击
找到您的设备 ID(在我的情况下为 13 波纹管):
# xinput list
Run Code Online (Sandbox Code Playgroud)
寻找:
? ETPS/2 Elantech Touchpad id=13 [slave pointer (2)]
Run Code Online (Sandbox Code Playgroud)找到“敲击”所需的选项代码(在我的情况下为 283 波纹管):
# xinput list-props 13
Run Code Online (Sandbox Code Playgroud)
寻找:
libinput Tapping Enabled (283): 0
Run Code Online (Sandbox Code Playgroud)使用“1”激活它:
# xinput set-prop 13 283 1
Run Code Online (Sandbox Code Playgroud)再次列出道具以确认:
# xinput list-props 13
Run Code Online (Sandbox Code Playgroud)
寻找:
libinput Tapping Enabled (283): 1
Run Code Online (Sandbox Code Playgroud)| 归档时间: |
|
| 查看次数: |
37688 次 |
| 最近记录: |