我已经成功使用这个建议在少数几个应用程序(firefox、pdf viewer、libreoffice)中反转鼠标滚轮滚动方向,但不反转其他应用程序(nemo、xterm、xed)。我想知道是否有一些更广泛的设置可以在这里编辑以解决这个问题。
答案1
根据您的 X11 输入驱动程序,您可能能够在 X 层反转滚动方向。
我正在使用libinput
输入驱动程序作为我的输入设备(包xserver-xorg-input-libinput
),并且我使用以下配置(在/usr/share/X11/xorg.conf.d/90-libinput-settings
):
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "NaturalScrolling" "1"
EndSection
如果你使用synaptics
输入驱动程序,它可能是这样的这VertScrollDelta
(和取负值HorizScrollDelta
——选择您喜欢的值):
Section "InputClass"
Identifier "touchpad catchall"
MatchIsTouchpad "on"
Driver "synaptics"
MatchDevicePath "/dev/input/event*"
Option "VertScrollDelta" "-100"
Option "HorizScrollDelta" "-100"
EndSection