Skip to content

Instantly share code, notes, and snippets.

@wjladams
Created April 9, 2018 21:03
Show Gist options
  • Save wjladams/1a7f37019e0b1b3c2c0be335142b1852 to your computer and use it in GitHub Desktop.
Save wjladams/1a7f37019e0b1b3c2c0be335142b1852 to your computer and use it in GitHub Desktop.
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
synclient VertScrollDelta=-116
@AliabbasMerchant
Copy link

Works, thanks!

@elias-codes
Copy link

Flawless, thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment