On Thu, 23 Jan 2003 23:42:31 -1000
Warren Togami <[EMAIL PROTECTED]> wrote:

> Gary Dunn wrote:
> > My only complaint is that my Sony USB mouse is not hot-pluggable. 
...

> X can be configured in a certain way so that USB mice can be hotplugged 
> at any time, and work in simultaneously with your existing PS/2 mice 
> just like you would expect it.

Warren, your sample file gave me enough clues to solve the problem. I had
my device driver set to /dev/usbmouse. Changing to /dev/input/mice did the
trick. It even works after suspend mode! No more rebooting when I get
home, just plug in the a/c power and get back to work. Sweet.

# **********************************************************************
# Pointer section
# **********************************************************************

Section "InputDevice"
    Identifier  "Mouse1"
    Driver      "mouse"
    Option "Protocol"    "PS/2"
    Option "Device"      "/dev/mouse"
    Option "Emulate3Buttons"
    Option "Emulate3Timeout" "50"

# ChordMiddle is an option for some 3-button Logitech mice

#    Option "ChordMiddle"

EndSection


Section "InputDevice"
        Identifier  "Mouse2"
        Driver      "mouse"
        Option      "Protocol" "IMPS/2"
        # Option    "Device" "/dev/usbmouse"
        Option      "Device" "/dev/input/mice"
        Option      "ZAxisMapping" "4 5"
EndSection



-- 

          _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/
         _/                                     _/
        _/  Gary Dunn                          _/
       _/  Open Slate Project                 _/
      _/  http://openslate.sourceforge.net/  _/
     _/  http://www.aloha.com/~knowtree/    _/
    _/  Honolulu                           _/
   _/  registered Linux user #273809      _/
  _/                                     _/
 _/  This tagline is umop apisdn.       _/
_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/

Reply via email to