Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

linux: dual mice - multiple mice with multiple mouse pointers? [closed]

Tags:

is it possible to use more then one mouse in Linux so that there's two pointers controlled by two mice?

or

can i get raw data like x,y from a second mouse even if there's no pointer?

like image 917
blank bank Avatar asked Oct 25 '10 06:10

blank bank


2 Answers

I've found a way to do it, but it causes major tearing with Gnome.

  1. Open a terminal and type in xinput (all commands should be done as normal user).
    Look at the id of the one of your mice.

  2. Then create a new master device with this command xinput create-master "name".

  3. Now you just need to reattach one of your mice to the new master xinput reattach "mouse id" "new master id".

Note this works but is not practical, at least until it's implemented properly in the GUI. To revert this you will probably have to do it blind, but the commands are as follows xinput reattach "mouse id" "old master id" then xinput remove-master "new master id".

Notes:
- "name" means the name to give the new master, anything will work
- "mouse id" is the id number of the mouse you want to attach to the new master
- "new master id" is the id number of the new master you created
- "old master id" is the id number of the master that was there to begin with

like image 191
Anthony Avatar answered Sep 28 '22 19:09

Anthony


Easy. Use a program like openpie and write your own multiple mouse script (allot easier than it sounds, I think you can find a pre-written dual mouse glovepie script [just google 'glovepie dual mouse')] NB: you will need more than one input method for separate mouse control.

good luck I used 6 mice at once :)

like image 40
Hobbidhobbin Avatar answered Sep 28 '22 19:09

Hobbidhobbin