Skip to content

Instantly share code, notes, and snippets.

@crossdjinn
Last active November 24, 2018 06:29
Show Gist options
  • Save crossdjinn/ed7c878a2758ddd055edab54c4a1475c to your computer and use it in GitHub Desktop.
Save crossdjinn/ed7c878a2758ddd055edab54c4a1475c to your computer and use it in GitHub Desktop.
how to set up the finnest level of Apple Magic Mouse <3 on Linux
// https://askubuntu.com/questions/205676/how-to-change-mouse-speed-sensitivity/208230#208230
// list of devices and their ID = xx
xinput --list --short
// list of properities look for "yyy"
// Device Accel Constant Deceleration (269): 1.000000
xinput --list-props "xx"
// set finnest "z.z" level ever
// WARN !!! reset after restarty, setup as startup script, viz down
// xinput --set-prop "xx" "yyy" "z.z"
xinput --set-prop 14 267 1.5
#!/bin/sh
xinput --set-prop "SynPS/2 Synaptics TouchPad" "Device Accel Constant Deceleration" 1.5
# open terminal set "chmod +x" and Put this in the start-up applications list.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment