Last active
March 24, 2017 08:03
-
-
Save rickmer/b365061593b230d45308553f92982d29 to your computer and use it in GitHub Desktop.
natural scrolling
This file contains 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/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