Activate tap to click on touchpad?

Simon Baldwin

I am using Debian 8.6 LXDE on a Powerbook G4 15" 1.67GHz and would like to enable tap to click on the touchpad. It is already double scrolling but tap to click would help to save the ageing mouse button. Two fingered tap for left click would be the icing on the cake, is this possible?

GAD3R

Debian Jessie

To enable the touchpad tapping permanently , copy the 50-synaptics.conf file to /etc/X11/xorg.conf.d then edit it by adding Option "TapButton1" "1" .

As root:

mkdir /etc/X11/xorg.conf.d
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf

The /etc/X11/xorg.conf.d/50-synaptics.conf should be:

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "TapButton2" "3"

Reboot your system

Debian Stretch and Buster (updated)

Remove the xserver-xorg-input-synaptics package. (important)

# apt remove xserver-xorg-input-synaptics

Install xserver-xorg-input-libinput:

# apt install xserver-xorg-input-libinput

In most cases, make sure you have the xserver-xorg-input-libinput package installed, and not the xserver-xorg-input-synaptics package.

As root:

create /etc/X11/xorg.conf.d/

mkdir /etc/X11/xorg.conf.d

Create the 40-libinput.conf file:

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

restart your DM; e,g:

# systemctl restart lightdm

or

# systemctl restart gdm3

Debian wiki : Enable tapping on touchpad

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Middle click with two-finger tap on touchpad

From Dev

how to disable tap-on-click (touchpad) on windows

From Dev

GDM - how to enable touchpad tap-to-click

From Dev

Touchpad not responding to double-tap to click

From Dev

Lubuntu 18.10 How to activate tap to click

From Dev

Lubuntu 18.10 How to activate tap to click

From Dev

Synaptics touchpad tap-to-click is not working in Ubuntu 15.10(Gnome)

From Dev

Synaptics touchpad tap-to-click is not working in Ubuntu 16.04 LTS (Gnome)

From Dev

Synaptics touchpad tap-to-click is not working in Ubuntu 15.10(Gnome)

From Dev

How do I disable touchpad tap to click on Ubuntu 16.04?

From Dev

Synaptics touchpad tap-to-click is not working in Ubuntu 16.04 LTS (Gnome)

From Dev

Touchpad tap stopped working

From Dev

deactivated touchpad - how to activate?

From Dev

deactivated touchpad - how to activate?

From Dev

How to ENABLE touchpad tap-to-click while typing? Configuration keeps resetting every few seconds

From Dev

How to configure touchpad two fingers tap as middle click in ubuntu 19.10? Libinput is used

From Dev

Reduce touchpad touch sensitivity or disable tap-to-click unless key is pressed

From Dev

How do I disable tap-to-click on the touchpad in Ubuntu Gnome 17.04?

From Dev

How to tap to click on FocalTechPS touchpad in Debian Stretch Gnome X11?

From Dev

How to activate touchpad while typing?

From Dev

Touchpad could not click

From Dev

Touchpad randomly move and click

From Dev

Fully disable "tap and drag gesture" for synaptics touchpad

From Dev

Different behaviour by double tap on touchpad and with buttons

From Dev

Fully disable "tap and drag gesture" for synaptics touchpad

From Dev

What is the difference between .on('click tap') and .on('click || tap')?

From Dev

Left click not working on touchpad or mouse

From Dev

No secondary button (right click) on touchpad

From Dev

Middle click with touchpad on Ubuntu 16.04

Related Related

  1. 1

    Middle click with two-finger tap on touchpad

  2. 2

    how to disable tap-on-click (touchpad) on windows

  3. 3

    GDM - how to enable touchpad tap-to-click

  4. 4

    Touchpad not responding to double-tap to click

  5. 5

    Lubuntu 18.10 How to activate tap to click

  6. 6

    Lubuntu 18.10 How to activate tap to click

  7. 7

    Synaptics touchpad tap-to-click is not working in Ubuntu 15.10(Gnome)

  8. 8

    Synaptics touchpad tap-to-click is not working in Ubuntu 16.04 LTS (Gnome)

  9. 9

    Synaptics touchpad tap-to-click is not working in Ubuntu 15.10(Gnome)

  10. 10

    How do I disable touchpad tap to click on Ubuntu 16.04?

  11. 11

    Synaptics touchpad tap-to-click is not working in Ubuntu 16.04 LTS (Gnome)

  12. 12

    Touchpad tap stopped working

  13. 13

    deactivated touchpad - how to activate?

  14. 14

    deactivated touchpad - how to activate?

  15. 15

    How to ENABLE touchpad tap-to-click while typing? Configuration keeps resetting every few seconds

  16. 16

    How to configure touchpad two fingers tap as middle click in ubuntu 19.10? Libinput is used

  17. 17

    Reduce touchpad touch sensitivity or disable tap-to-click unless key is pressed

  18. 18

    How do I disable tap-to-click on the touchpad in Ubuntu Gnome 17.04?

  19. 19

    How to tap to click on FocalTechPS touchpad in Debian Stretch Gnome X11?

  20. 20

    How to activate touchpad while typing?

  21. 21

    Touchpad could not click

  22. 22

    Touchpad randomly move and click

  23. 23

    Fully disable "tap and drag gesture" for synaptics touchpad

  24. 24

    Different behaviour by double tap on touchpad and with buttons

  25. 25

    Fully disable "tap and drag gesture" for synaptics touchpad

  26. 26

    What is the difference between .on('click tap') and .on('click || tap')?

  27. 27

    Left click not working on touchpad or mouse

  28. 28

    No secondary button (right click) on touchpad

  29. 29

    Middle click with touchpad on Ubuntu 16.04

HotTag

Archive