Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Debian 9 : tap to touch at login screen GDM

Linux Kernel, Network, and Services configuration.
Post Reply
Message
Author
User avatar
f.r3d
Posts: 76
Joined: 2016-07-28 16:39
Location: France
Has thanked: 4 times

Debian 9 : tap to touch at login screen GDM

#1 Post by f.r3d »

Hello everyone,

I'm having trouble configuring tap to touch at login screen GDM.
I looked at these documentations here and here, I created:

Code: Select all

frederic@frederic-laptop:/etc/X11/xorg.conf.d$ cat 30-touchpad.conf 
Section "InputClass"
    Identifier "touchpad"
    Driver "libinput"
    MatchIsTouchpad "on"
	Option "Tapping" "on"
        Option "TapButton1" "1"
        Option "TapButton2" "3"
        Option "TapButton3" "2"
EndSection

Code: Select all

frederic@frederic-laptop:/etc/X11/xorg.conf.d$ cat 40-libinput.conf 
Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
        Option "Tapping" "on"
EndSection
But it does not work... What should I do? Thank you for your help!
Debian 11 Gnome 64bit
Thinkpad T460
4X Intel Core i7-6600U / 8GB Ram / Intel HD Graphics 520 / 256GB SSD /

User avatar
debiman
Posts: 3063
Joined: 2013-03-12 07:18

Re: Debian 9 : tap to touch at login screen GDM

#2 Post by debiman »

these are Xorg, aka X server, settings.
i think technically Xorg is not yet started at the login manager.
what exactly do you need, and why do you need it so early?

User avatar
f.r3d
Posts: 76
Joined: 2016-07-28 16:39
Location: France
Has thanked: 4 times

Re: Debian 9 : tap to touch at login screen GDM

#3 Post by f.r3d »

With Debian 8 these same settings worked perfectly but now it does not work so I wonder what changed between 8 and 9.
Debian 11 Gnome 64bit
Thinkpad T460
4X Intel Core i7-6600U / 8GB Ram / Intel HD Graphics 520 / 256GB SSD /

reinob
Posts: 1196
Joined: 2014-06-30 11:42
Has thanked: 99 times
Been thanked: 47 times

Re: Debian 9 : tap to touch at login screen GDM

#4 Post by reinob »

f.r3d wrote:

Code: Select all

frederic@frederic-laptop:/etc/X11/xorg.conf.d$ cat 30-touchpad.conf 
Section "InputClass"
    Identifier "touchpad"
    Driver "libinput"
    MatchIsTouchpad "on"
	Option "Tapping" "on"
        Option "TapButton1" "1"
        Option "TapButton2" "3"
        Option "TapButton3" "2"
EndSection
AFAIK libinput does not have the TapButtonX options. Are you sure you want to use libinput instead of synaptics? (which does have those options).

If you want to use libinput then read the manual (man libinput) and have a look at the available options...

User avatar
f.r3d
Posts: 76
Joined: 2016-07-28 16:39
Location: France
Has thanked: 4 times

Re: Debian 9 : tap to touch at login screen GDM

#5 Post by f.r3d »

Ok so I looked at the manual and here is the new file:

Code: Select all

frederic@frederic-laptop:~$ cat /etc/X11/xorg.conf.d/60-libinput.conf
Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
	Option "Tapping" "true"
	Option "TappingButtonMap" "lrm"
	Option "ScrollMethod" "twofinger"	
EndSection
But it still does not work...
Debian 11 Gnome 64bit
Thinkpad T460
4X Intel Core i7-6600U / 8GB Ram / Intel HD Graphics 520 / 256GB SSD /

User avatar
debiman
Posts: 3063
Joined: 2013-03-12 07:18

Re: Debian 9 : tap to touch at login screen GDM

#6 Post by debiman »

you still haven't tried using the synaptics driver instead of libinput.

and i think you need to move either file out of the way, otherwise they're both competing for the same hardware?

User avatar
f.r3d
Posts: 76
Joined: 2016-07-28 16:39
Location: France
Has thanked: 4 times

Re: Debian 9 : tap to touch at login screen GDM

#7 Post by f.r3d »

I deleted the old files so no conflict here. I know that it would most probably work with the synaptics driver (it worked for me in Debian 8 ) but since Debian 9 replaced the synaptics driver with libinput, because libinput is meant to supplant synaptics in the near future, I might as well try to make it work with libinput.
Debian 11 Gnome 64bit
Thinkpad T460
4X Intel Core i7-6600U / 8GB Ram / Intel HD Graphics 520 / 256GB SSD /

Post Reply