Skip to content

Instantly share code, notes, and snippets.

@rickmer
Last active March 24, 2017 08:03
Show Gist options
  • Save rickmer/b365061593b230d45308553f92982d29 to your computer and use it in GitHub Desktop.
Save rickmer/b365061593b230d45308553f92982d29 to your computer and use it in GitHub Desktop.
natural scrolling
#!/bin/bash
device=`xinput list | grep Synaptics | grep -o -E id=[0-9]{2} | grep -o -E [0-9]{2}`;
prop=`xinput list-props $device | grep "Natural Scrolling Enabled (" | grep -o -E [0-9]{3}`
xinput --set-prop $device $prop 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment