Last active
December 1, 2016 21:21
-
-
Save davidfraser/459b66daf4a466a01452 to your computer and use it in GitHub Desktop.
For Linux/X11 systems, adjusting setting on Lenovo Y50 (and possibly others) so that the button area of the touchpad is kept from also being regarded as a mouse movement area, preventing awkward dragging when trying to click.
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/bash | |
boundary="`synclient -l | grep RightButtonAreaTop | sed 's/RightButtonAreaTop//' | sed 's/[ =]//g'`" | |
echo Setting boundary to "$boundary" | |
synclient AreaBottomEdge="$boundary" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See http://askubuntu.com/questions/245620/is-it-possible-to-manually-define-the-usable-space-on-my-laptops-trackpad/246367#246367