I am trying to get X to ignore a bunch of event nodes that other applications are using in a raw form. I want X to watch /dev/input/mice /dev/input/mouse0 and /dev/input/event5 ONLY. Below is my xorg.conf file:<br><br><br clear="all">
Section "ServerFlags"<br> Option "AutoAddDevices" "false"<br>EndSection<br><br>Section "InputClass"<br> Identifier "ign0"<br> MatchDevicePath "/dev/input/event0"<br>
Driver "evdev"<br> Option "Ignore" "on"<br>EndSection<br><br>Section "InputClass"<br> Identifier "ign1"<br> MatchDevicePath "/dev/input/event1"<br>
Driver "evdev"<br> Option "Ignore" "on"<br>EndSection<br><br>Section "InputClass"<br> Identifier "ign3"<br> MatchDevicePath "/dev/input/event3"<br>
Driver "evdev"<br> Option "Ignore" "on"<br>EndSection<br><br>Section "InputClass"<br> Identifier "ign4"<br> MatchDevicePath "/dev/input/event4"<br>
Driver "evdev"<br> Option "Ignore" "on"<br>EndSection<br>Section "Device"<br> Identifier "vfb"<br> Driver "fbdev"<br>
EndSection<br><br>Section "InputDevice"<br> Identifier "mouse0"<br> Driver "mouse"<br> Option "Protocol" "auto"<br> Option "Device" "/dev/input/mice"<br>
EndSection<br><br>Section "InputDevice"<br> Identifier "kb0"<br> Driver "evdev"<br> Option "XkbLayout" "us,cz"<br> Option "XkbVariant" ",qwerty"<br>
Option "Device" "/dev/input/event5"<br>EndSection<br><br>Thank you for your help in advance!<br>