Created
April 9, 2018 21:03
-
-
Save wjladams/1a7f37019e0b1b3c2c0be335142b1852 to your computer and use it in GitHub Desktop.
xubuntu reverse scrolling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 | |
synclient VertScrollDelta=-116 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works, thanks!