Skip to content

Instantly share code, notes, and snippets.

@jakelee8
Created December 4, 2016 07:05
Show Gist options
  • Save jakelee8/687432c997af7ad329e5367a7505a0c4 to your computer and use it in GitHub Desktop.
Save jakelee8/687432c997af7ad329e5367a7505a0c4 to your computer and use it in GitHub Desktop.
Decrease mouse sensitivity on T650

To test different settings:

xinput list
xinput list-props 'Logitech Rechargeable Touchpad T650'
xinput set-prop 'Logitech Rechargeable Touchpad T650' 'Synaptics Finger' 1 12 0
xinput set-prop 'Logitech Rechargeable Touchpad T650' 'Synaptics Locked Drags' 1
xinput set-prop 'Logitech Rechargeable Touchpad T650' 'Synaptics Palm Detection' 1

To make it permanent:

# /usr/share/X11/xorg.conf.d/52-synaptics-t650.conf

Section "InputClass"
    Identifier "Logitech Rechargeable Touchpad T650 quirks"
    MatchProduct "Logitech Rechargeable Touchpad T650"
    Option "FingerLow" "1"
    Option "FingerHigh" "12"
    Option "FingerPress" "0"
    Option "LockedDrags" "on"
    Option "PalmDetect" "on"
EndSection

References:

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