On Thu, Sep 02, 2010 at 08:30:28PM +0200, Ralf Dreibrodt wrote:
> Hello,
> 
> Peter Hutterer wrote:
> >...
> 
> thanks for your help.
> 
> Here is my solution:
> I have removed everything about keyboard/mouse I used before.
> 
> Then I splitted the config-file into seat0.conf and seat1.conf.
> 
> I added in seat0.conf:
> Section "InputClass"
>         Identifier "evdev pointer catchall"
>         MatchIsPointer "on"
>         MatchDevicePath "/dev/input/event*"
>         Driver "evdev"
>         MatchProduct "062a"
> EndSection
> 
> Section "InputClass"
>         Identifier "evdev keyboard catchall"
>         MatchIsKeyboard "on"
>         MatchDevicePath "/dev/input/event*"
>         Driver "evdev"
>         MatchProduct "0566"
> EndSection
> 
> And in seat1.conf:
> Section "InputClass"
>         Identifier "evdev pointer catchall"
>         MatchIsPointer "on"
>         MatchDevicePath "/dev/input/event*"
>         Driver "evdev"
>         MatchProduct "BTKB-3FD4"
> EndSection
> 
> Section "InputClass"
>         Identifier "evdev keyboard catchall"
>         MatchIsKeyboard "on"
>         MatchDevicePath "/dev/input/event*"
>         Driver "evdev"
>         MatchProduct "BTKB-3FD4"
> EndSection
> 
> And I removed the file /usr/share/X11/xorg.conf.d/10-evdev.conf

good to hear you found a solution. you can get the same result by inverting
the matches with the Ignore option. that way you can keep the system
10-evdev.conf and the config itself is much simpler:

seat0.conf:
Section "InputClass"
        Identifier "ignore 062a"
        MatchProduct "BTKB-3FD4"
        Option "Ignore" "on"
EndSection

seat1.conf:
Section "InputClass"
        Identifier "ignore 062a"
        MatchProduct "062a|0566"
        Option "Ignore" "on"
EndSection

Cheers,
  Peter
_______________________________________________
[email protected]: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.freedesktop.org/mailman/listinfo/xorg
Your subscription address: [email protected]

Reply via email to