How can I set different sensitivities for two mice at the same time?

ændrük

I often use a USB mouse and my laptop's pointing stick at the same time. I can adjust the sensitivity in Mouse Preferences, but the sensitivities of the two mice are so different that I cannot find a compromise setting.

Is there a way to specify a different sensitivity setting for each mouse?

Li Lo

You can use xinput to set the sensitivities/accels for the mice.

$ xinput list
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ Logitech USB-PS/2 Optical Mouse           id=8    [slave  pointer  (2)]
⎜   ↳ Microsoft Microsoft® Nano Transceiver v2.0    id=10   [slave  pointer  (2)]
⎜   ↳ Microsoft Microsoft® Nano Transceiver v2.0    id=11   [slave  pointer  (2)]
⎜   ↳ Macintosh mouse button emulation          id=13   [slave  pointer  (2)]
⎣ Virtual core keyboard                     id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard               id=5    [slave  keyboard (3)]
    ↳ Power Button                              id=6    [slave  keyboard (3)]
    ↳ Power Button                              id=7    [slave  keyboard (3)]
    ↳ Microsoft Microsoft® Nano Transceiver v2.0    id=9    [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard              id=12   [slave  keyboard (3)]

From that output take the numeric id of the mice. I'll provide an example for my Logitech mouse. For multiple mice rinse and repeat.

So for my logitech I will use xinput get-feedbacks <device name> and xinput set-ptr-feedback <device name> <threshold> <num> <denom>

$ xinput get-feedbacks 8
1 feedback class
PtrFeedbackClass id=0
    accelNum is 3
    accelDenom is 10
    threshold is 4

The accel is set as a fraction so you need to set the nom and denom for it:

$ xinput set-ptr-feedback 8 4 3 1
$ xinput get-feedbacks 8
1 feedback class
PtrFeedbackClass id=0
    accelNum is 3
    accelDenom is 1
    threshold is 4

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How can I force Gradle to set the same version for two dependencies?

From Dev

How can I have two different "processes" for the same entity accessing the same outputs in VHDL?

From Dev

How can I prevent the users to press two button at the same time?

From Dev

How can I execute two actions at the same time?

From Dev

How can I plot two different spaced time series on one same plot in Python

From Dev

How can I store the same data in two different mySQL tables?

From Dev

How can I load two versions of same assemblies into two different domains from two different subfolders?

From Dev

How can I pass two different ID in same tabAdapter?

From Dev

Can I run two keyboards and mice in different apps?

From Dev

How can I have two different endpoint with different namespace and same JAXB class?

From Dev

Can I run two keyboards and mice in different apps?

From Dev

How can I set different sensitivities for two mice at the same time?

From Dev

How can I debug two projects in eclipse at the same time?

From Dev

How do I run two different conky sessions at the same time?

From Dev

How can I run two different main class at the same time?

From Dev

How can I prevent the users to press two button at the same time?

From Dev

How can I set different datasets for different pickerviews on the same view controller

From Dev

How can I run two programs at the same time, but when they are in different directories? (Tcsh shell)

From Dev

Why can't I use two or more keyboards/mice at the same time on one computer?

From Dev

Can I not have two ssh at the same time?

From Dev

How do I set different settings for different mice?

From Dev

how a single file can be linked to two different streams at same time?

From Dev

How can I load two versions of same assemblies into two different domains from two different subfolders?

From Dev

How can I extend and implement two libraries at the same time?

From Dev

How can I check if same text appears in two different files

From Dev

How can I call two method in the same Activity that will work on the same file but in different times?

From Dev

How can I test two different responder flows in the same CorDapp?

From Dev

How can I use the same fields for two different forms?

From Dev

How Do I Run Two Different Specs at The Same Time?

Related Related

  1. 1

    How can I force Gradle to set the same version for two dependencies?

  2. 2

    How can I have two different "processes" for the same entity accessing the same outputs in VHDL?

  3. 3

    How can I prevent the users to press two button at the same time?

  4. 4

    How can I execute two actions at the same time?

  5. 5

    How can I plot two different spaced time series on one same plot in Python

  6. 6

    How can I store the same data in two different mySQL tables?

  7. 7

    How can I load two versions of same assemblies into two different domains from two different subfolders?

  8. 8

    How can I pass two different ID in same tabAdapter?

  9. 9

    Can I run two keyboards and mice in different apps?

  10. 10

    How can I have two different endpoint with different namespace and same JAXB class?

  11. 11

    Can I run two keyboards and mice in different apps?

  12. 12

    How can I set different sensitivities for two mice at the same time?

  13. 13

    How can I debug two projects in eclipse at the same time?

  14. 14

    How do I run two different conky sessions at the same time?

  15. 15

    How can I run two different main class at the same time?

  16. 16

    How can I prevent the users to press two button at the same time?

  17. 17

    How can I set different datasets for different pickerviews on the same view controller

  18. 18

    How can I run two programs at the same time, but when they are in different directories? (Tcsh shell)

  19. 19

    Why can't I use two or more keyboards/mice at the same time on one computer?

  20. 20

    Can I not have two ssh at the same time?

  21. 21

    How do I set different settings for different mice?

  22. 22

    how a single file can be linked to two different streams at same time?

  23. 23

    How can I load two versions of same assemblies into two different domains from two different subfolders?

  24. 24

    How can I extend and implement two libraries at the same time?

  25. 25

    How can I check if same text appears in two different files

  26. 26

    How can I call two method in the same Activity that will work on the same file but in different times?

  27. 27

    How can I test two different responder flows in the same CorDapp?

  28. 28

    How can I use the same fields for two different forms?

  29. 29

    How Do I Run Two Different Specs at The Same Time?

HotTag

Archive