This content originally appeared on DEV Community and was authored by Yofre Ormaza
Todo lo siguiente será ejecutado desde el terminal del sistema.
1. Instalar libinput
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.
sudo vim /etc/X11/xorg.conf.d/40-libinput.conf
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
3. Guarde el archivo y salga de Vim (:wq)
4. Reinicia tu ordenador
That’s it!
This content originally appeared on DEV Community and was authored by Yofre Ormaza