[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Synaptics et double tap



	Bonjour


	J'ai suivi le thread avec attention puisque confronté au même problème.
Donc en effet libinput remplace synaptics. Les fichiers de conf sont dans /usr/share/X11/xorg.conf.d.

Ces fichiers de conf sont lu dans l'ordre. Et si xserver-xorg-input-synaptics et xserver-xorg-input-libinput sont installés alors on voit que la conf de synaptics est lu en dernier et donc c'est lui qui impose sa config. Donc pour que libinput soit "prioritaire", soit désinstaller xserver-xorg-input-synaptics, soit renommer 60-libinput.conf en 90-libinput.conf.

Et par défaut libinput désactive le tap et scrolling, donc les réglages n'apparaissent pas dans le panneau de config de "souris et pavé tactile". Pour retrouver ces possibilités de réglages, j'ai modifié le fichier de conf de libinput ainsi (c'est ixquick qui me l'a dit)

# cat /usr/share/X11/xorg.conf.d/60-libinput.conf
# Match on all types of devices but tablet devices and joysticks
Section "InputClass"
        Identifier "libinput pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
	Option "NaturalScrolling" "on"
        Option "Tapping" "on"
        Option "TappingDrag" "on"
        Option "DisableWhileTyping" "on"

	
EndSection

Section "InputClass"
        Identifier "libinput touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection



Et enfin je retrouve mon touchpad comme avant :-)

--
Manu


Reply to: