Last active
November 24, 2018 06:29
-
-
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
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
// 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 |
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/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