正如标题所示,我无法启用自然(澳大利亚/反向)滚动。我检查了通常的位置(系统设置 -> 鼠标和触摸板),但这是一个最小菜单,没有提及滚动。然后我使用 dconf 编辑器 GUI 编辑了 dconf 数据库,我将所有自然滚动布尔值设置为 true,但这也不起作用。最后我尝试使用 xinput 但我什至看不到 xinput 中的触摸板名称(虚拟核心输入或其他东西,但不是真正的硬件设备)。我正在使用华为 matebook D 14。我还想启用两指右键单击,因为此选项在设置中也没有。鼠标和触摸板设置看起来非常小,以至于我想知道我是否缺少配置文件或其他东西,在 ubuntu 中肯定有超过 2 个与鼠标或触摸板相关的设置。
提前感谢您的任何建议,如果没有简单的解决方案,请告诉我,因为我会简单地回到正常的 gnome 桌面。
编辑 2: xinput list-props 11 的输出:
Device 'ELAN2204:00 04F3:3109 Touchpad':
Device Enabled (149): 1
Coordinate Transformation Matrix (151): 1.000000, 0.000000, 0.000000,
0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
libinput Tapping Enabled (302): 0
libinput Tapping Enabled Default (303): 0
libinput Tapping Drag Enabled (304): 1
libinput Tapping Drag Enabled Default (305): 1
libinput Tapping Drag Lock Enabled (306): 0
libinput Tapping Drag Lock Enabled Default (307): 0
libinput Tapping Button Mapping Enabled (308): 1, 0
libinput Tapping Button Mapping Default (309): 1, 0
libinput Natural Scrolling Enabled (286): 0
libinput Natural Scrolling Enabled Default (287): 0
libinput Disable While Typing Enabled (310): 1
libinput Disable While Typing Enabled Default (311): 1
libinput Scroll Methods Available (288): 1, 1, 0
libinput Scroll Method Enabled (289): 1, 0, 0
libinput Scroll Method Enabled Default (290): 1, 0, 0
libinput Click Methods Available (312): 1, 1
libinput Click Method Enabled (313): 1, 0
libinput Click Method Enabled Default (314): 1, 0
libinput Middle Emulation Enabled (315): 0
libinput Middle Emulation Enabled Default (316): 0
libinput Accel Speed (293): 0.000000
libinput Accel Speed Default (294): 0.000000
libinput Left Handed Enabled (298): 0
libinput Left Handed Enabled Default (299): 0
libinput Send Events Modes Available (271): 1, 1
libinput Send Events Mode Enabled (272): 0, 0
libinput Send Events Mode Enabled Default (273): 0, 0
Device Node (274): "/dev/input/event8"
Device Product ID (275): 1267, 12553
libinput Drag Lock Buttons (300): <no items>
libinput Horizontal Scroll Enabled (301): 1
编辑 3:
感谢 Pilot6 的有用建议,我发现了一个可以实现自然滚动的命令:
xinput set-prop "ELAN2204:00 04F3:3109 Touchpad" 286 1
286 是指自然滚动的属性数。我现在唯一的问题是如何确保它在启动时运行。如果我找到一个,我会调查并发布我的答案。