Skip to content

Instantly share code, notes, and snippets.

@cob16
Created February 18, 2018 11:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cob16/852fe51373cf9511323bf3fa9322bd22 to your computer and use it in GitHub Desktop.
Save cob16/852fe51373cf9511323bf3fa9322bd22 to your computer and use it in GitHub Desktop.
Disable drag lock / click lock linux fedora

Disable drag / click lock on linux

This can somtimes show up when you are playing games that require longclicking of both mouse buttons. (I found this when playing the heavyweapons in tf2)

Use xinput list to find your device id

Then use xinpit list-props <ID> to find the relevent property name to set.

You can then set the property to 0 to disable it ether by using the device and property name like so

xinput --set-prop 'Kingsis Peripherals ZOWIE Gaming mouse' 'libinput Drag Lock Buttons' 0

or just using the id numbers

xinput set-prop 9 296 0

More info

More info in the arch wiki

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