Skip to content

Instantly share code, notes, and snippets.

@markus-willems
Created January 3, 2019 19:23
Show Gist options
  • Save markus-willems/b4b7e9b70e6b0002bc4d3c21a08ee1e3 to your computer and use it in GitHub Desktop.
Save markus-willems/b4b7e9b70e6b0002bc4d3c21a08ee1e3 to your computer and use it in GitHub Desktop.
Enable natural scrolling in Xubuntu 18.04.1

Enable natural scrolling in Xubuntu 18.04.1

  1. Uncheck Reverse scroll direction in Settings > Mouse and Touchpad
  2. Open Terminal and enter sudo mousepad /usr/share/X11/xorg.conf.d/70-synaptics.conf
  3. Append the following snippet:
Section "InputClass"
    Identifier "touchpad"
    Driver "synaptics"
    MatchIsTouchpad "on"
	Option "VertScrollDelta" "-100"
	Option "HorizScrollDelta" "-100"
EndSection
  1. Reboot or Log out and in.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment