Ubuntu – Missing mouse/touchpad options (Ubuntu 16.04)

mousesynapticstouchpad

It seems I've lost some of my mouse and touchpad settings:

mouse touchpad settings problem ubuntu 16.04

As it is, I can move the pointer with the touchpad, but there's no tap-to-click and it's set to non-natural two-finger scrolling.

So far, I've tried uninstalling/installing Synaptics touchpad driver, but no luck with that.

Does anyone know how can I get scrolling and click options back?

Best Answer

Alright, so I found a solution to my issue here, but here's a more concise explanation of what actually solved my issue:

Basically, I had to go to /usr/shar/X11/xorg.conf.d and edit the 50-synaptics.conf file. Assuming root privileges, I opened this file in nano and added the following three lines under the third stanza, right below any already-listed Option:

Option "VertEdgeScroll" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"

I then saved this as 90-synaptics.conf and removed any competing libinput files. Rebooted, and got back tap-to-click, two-fingered right click, and edge scrolling (both vertical AND horizontal); exactly the same setup I had before.

From the Mouse and Touchpad settings menu, I regained everything but the ability to turn on/off horizontal scrolling.

Related Question