Skip to content

Instantly share code, notes, and snippets.

View elias-codes's full-sized avatar
Learning Javascript

Elías Torres elias-codes

Learning Javascript
View GitHub Profile
@markus-willems
markus-willems / xubuntu-natural-scrolling.md
Created January 3, 2019 19:23
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"
@wjladams
wjladams / fixscroll.sh
Created April 9, 2018 21:03
xubuntu reverse scrolling
#!/bin/sh
# Find the amount by doign
# synclient | grep HorizScrollDelta
# synclient | grep VertScrollDelta
# And then simply negative that value for this
# Found at
# https://askubuntu.com/questions/690512/how-to-enable-natural-scrolling-in-xfce4/853262
# This is because, although xubuntu 18.04 has reverse scrolling option in touchpad
# settings, it doesn't really work, the setting does not cascade to gnome apps for some reason.
synclient HorizScrollDelta=-116