DEV Community

Yofre Ormaza
Yofre Ormaza

Posted on

¿Cómo habilitar los toques del touchpad en Arch Linux? - Spanish

touchpad taps

💡 Todo lo siguiente será ejecutado desde el terminal del sistema.

1. Instalar libinput

image install

2. Crear el archivo 40-libinput.conf

Puedes usar Vim u otro editor de texto de terminal como nano o neovim, en mi caso usaré Vim.

  1. sudo vim /etc/X11/xorg.conf.d/40-libinput.conf

  2. Agrega las siguientes instrucciones:

Section "InputClass"
    Identifier "libinput touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "libinput"
    Option "Tapping" "on"
    Option "TappingDrag" "on"
    Option "TappingButtonMap" "lrm"
EndSection
Enter fullscreen mode Exit fullscreen mode

3. Guarde el archivo y salga de Vim (:wq)

4. Reinicia tu ordenador

That's it! 💻

Top comments (0)