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! 💻

AWS GenAI LIVE image

Real challenges. Real solutions. Real talk.

From technical discussions to philosophical debates, AWS and AWS Partners examine the impact and evolution of gen AI.

Learn more

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay