También hay una forma "más agradable" xorg.conf
de hacer que las configuraciones invertidas <V_DISTANCE>
y <H_DISTANCE>
(determinadas según la respuesta de @ Eliran ) sean permanentes:
Cree un directorio /etc/X11/xorg.conf.d/
y, en él, un archivo que 51-synaptics-tweaks.conf
contenga:
Section "InputClass"
Identifier "touchpad"
Driver "synaptics"
MatchIsTouchpad "on"
Option "VertTwoFingerScroll" "on"
Option "HorizTwoFingerScroll" "on"
# In the following lines, use your own negative V_DISTANCE / H_DISTANCE values.
Option "VertScrollDelta" "-113"
Option "HorizScrollDelta" "-113"
EndSection
Esto sigue las recomendaciones de Ubuntu en los /usr/share/xorg.conf.d/*
archivos de ejemplo y también las instrucciones de Archlinux . Para ver el efecto, reinicie X, por supuesto :)