Answers:
德比·杰西(Debian Jessie)
要永久启用触摸板,请复制50-synaptics.conf
文件,/etc/X11/xorg.conf.d
然后通过添加进行编辑Option "TapButton1" "1"
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
本/etc/X11/xorg.conf.d/50-synaptics.conf
应该是:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
重新启动系统
Debian Stretch和Buster(更新)
取出xserver-xorg-input-synaptics
包装。(重要)
# apt remove xserver-xorg-input-synaptics
安装xserver-xorg-input-libinput
:
# apt install xserver-xorg-input-libinput
在大多数情况下,请确保已
xserver-xorg-input-libinput
安装软件包,而不是xserver-xorg-input-synaptics
软件包。
创建40-libinput.conf
文件:
# echo 'Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
EndSection' > /etc/X11/xorg.conf.d/40-libinput.conf
重新启动DM;例如:
# systemctl restart lightdm
要么
# systemctl restart gdm3
Debian Wiki:启用在触摸板上点击
在最近的系统(2017年)中,由于许多发行版都转移到Wayland,因此不再使用突触驱动程序。而是使用libinput。
要使用libinput启用点击以在触摸板上单击,请在Xorg配置中创建一个文件:
$ touch /etc/X11/xorg.conf.d/99-synaptics-overrides.conf
并添加以下配置:
Section "InputClass"
Identifier "touchpad overrides"
Driver "libinput"
MatchIsTouchpad "on"
Option "Tapping" "on"
Option "TappingButtonMap" "lmr"
EndSection
tap to click
努力的唯一方法Debian Stretch
。
tap to click
)中提供了更多选项。
在Debian 8.6和LXDE下类似的情况下,这对我有用:
synclient TapButton1=1
如果Synaptics触摸板与Synaptics Driver一起使用,则以上方法适用xserver-xorg-input-synaptics
。
如果使用libinput
驱动程序(许多实时图像中的默认驱动程序):
xinput set-prop 'SynPS/2 Synaptics TouchPad' 'libinput Tapping Enabled' 1
您可以xinput list-props 'SynPS/2 Synaptics TouchPad'
用来查看可以为您的触摸板调整的所有可用属性。
/etc/rc.local
或/etc/init.d/rc.local
。PS:如果您对此答案感到满意,请不要忘记接受此答案作为解决方案。
$: synclient TapButton2=3 TapButton3=2
。同样通过运行,synclient
您将看到触摸板可用的所有选项。
在xfce桌面环境中使用debian Stretch 9.5。
更新: /usr/share/X11/xorg.conf.d/40-libinput.conf
添加此部分:
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
EndSection
重新启动系统,现在点击即可工作。
sudo cp /usr/share/X11/xorg.conf.d/40-libinput.conf{,.bak}
)。并修复了i3,sddm等问题。它在Debian 9.6上。
这是我的突触xorg配置,可在带有xserver-xorg-input-synaptics
软件包的Debian 9.7(拉伸)上完美运行。
$ cat /etc/X11/xorg.conf.d/70-synaptic.conf
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
## for natural scrolling
Option "VertScrollDelta" "-111"
Option "HorizScrollDelta" "-111"
## tap to click
Option "TapButton1" "1"
## two finger tap to Right click
Option "TapButton2" "3"
EndSection