图形界面中没有自然滚动或双指右键单击选项,并且 dconf 编辑不起作用 - 带有 Unity 桌面的 Ubuntu 20.04

图形界面中没有自然滚动或双指右键单击选项,并且 dconf 编辑不起作用 - 带有 Unity 桌面的 Ubuntu 20.04

正如标题所示,我无法启用自然(澳大利亚/反向)滚动。我检查了通常的位置(系统设置 -> 鼠标和触摸板),但这是一个没有提到滚动的极简菜单。然后我使用 dconf 编辑器 GUI 编辑了 dconf 数据库,我将所有自然滚动布尔值设置为 true,但这也不起作用。最后我尝试使用 xinput,但在 xinput 中甚至看不到触摸板名称(虚拟核心输入或其他东西,但不是真正的硬件设备)。我正在使用华为 matebook D 14。我还想启用双指右键单击,因为此选项在设置中也无处可寻。鼠标和触摸板设置似乎非常少,我想知道我是否缺少配置文件或其他东西,ubuntu 中肯定有超过 2 个与鼠标或触摸板相关的设置。我已附上我的鼠标和触摸板设置以及 d-conf gui 窗口的屏幕截图。

在此先感谢您的任何建议,如果没有简单的解决方案,请告诉我,因为我将简单地回到正常的 gnome 桌面。

谢谢阅读在此处输入图片描述在此处输入图片描述

编辑:xinput 的输出如下所示在此处输入图片描述

编辑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 指的是自然滚动属性的编号。我现在唯一的问题是如何确保它在启动时运行。如果我找到答案,我会调查并发布我的答案。

答案1

要启用自然滚动,请libinput添加

Option "NaturalScrolling" "true"

/usr/share/X11/xorg.conf.d/40-libinput.conf

它应该被添加EndSection到触摸板部分之前。

Unity 桌面 GUI 应用程序无法使用libinput选项。

您可以通过以下方式切换到 synaptics

sudo apt remove xserver-xorg-input-libinput
sudo apt install xserver-xorg-input-all

相关内容