-1

My Laptop's touchpad was not clicking on taping. so i searched for google, and found that on running this

xinput --set-prop "ETPS/2 Elantech Touchpad" 272 1

(272 is "Tapping Enabled") it started working. But the article which i was reading said that it won't be parmanent. So i created this file named 99-libinput.conf and puted it in /etc/X11/xorg.conf.d/ , saved it and rebooted my laptop but it still didn't worked.

99-libinput.config file

Section "InputClass"
Identifier "My Touchpad"
MatchProduct "ETPS/2 Elantech Touchpad"
Option "TappingEnabled" "true"
EndSection

Help me figure out where i have messed up

Pilot6
  • 90,100
  • 91
  • 213
  • 324
ajcky
  • 1

1 Answers1

1

For Ubuntu or Lubuntu you are doing all wrong.

There is a file /usr/share/X11/xorg.conf.d/40-libinput.conf

The tapping is enabled in the touchpad section this way:

Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
        Option "Tapping" "True"
EndSection

You can also enable tapping in mouse settings GUI.

Pilot6
  • 90,100
  • 91
  • 213
  • 324