自更新以来,自然滚动一直正常 - 直到重新启动。关闭并再次打开设置可以解决问题,但相当...烦人。
谢谢您的任何建议!
答案1
编辑:
我刚刚找到更好的解决方案/解决方法我原来的回答是:
添加Option "NaturalScrolling" "on"
/usr/share/X11/xorg.conf.d/40-libinput.conf
在上下文中:
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Option "NaturalScrolling" "on"
Driver "libinput"
EndSection
然后重新启动 X 会话(即:注销或重新启动)
答案2
我也注意到了同样的情况;这真的很烦人。我的电脑还“忘记”了 Caps Lock 的设置(将其改为 Esc),这让我很抓狂。
以下两个终端命令可以修复问题
gsettings set org.gnome.desktop.peripherals.mouse natural-scroll true
对于我的逃脱问题:
gsettings set org.gnome.desktop.input-sources xkb-options "['caps:escape']"
(edit2) 因为我在终端中关闭并再次打开了设置,所以它们并没有神奇地消失。也许只需运行下面的一次就足够了?(关闭并再次打开:))
gsettings set org.gnome.desktop.peripherals.mouse natural-scroll false
gsettings set org.gnome.desktop.peripherals.mouse natural-scroll true