如何使用 Unity 在 Ubuntu 18.04.1 中启用自然滚动

如何使用 Unity 在 Ubuntu 18.04.1 中启用自然滚动

我仍在评估 Ubuntu 18.04.1 上的 Unity 与 Gnome

在 Unity 中我注意到没有自然滚动的设置。

在 dconf-editor 中,自然滚动设置为

但它不是传统的滚动——如何解决这个问题?

答案1

链接的帖子解释了如何设置触摸板的另一个属性,因此为了清楚起见,我将在这里写出来:

# First find number of your touchpad device
xinput list

# then get list of its properties and get number of "Natural Scrolling Enabled"
xinput list-props device_number

# finally set the property to 1 (true)
xinput set-prop device_number prop_number 1

答案2

为 X.Org 服务器安装 Synaptics TouchPad 驱动程序:

sudo apt install xserver-xorg-input-synaptics-hwe-18.04

并重新登录。

相关内容