Gymnasium Himmelsthür

Dies ist eine alte Version des Dokuments!


Touchscreen eTurboTouch

Der Touchscreen kann in X11 deaktiviert werden, indem eine geeignete Device-Datei erzeugt wird.

/etc/X11/xorg.conf.d

mit dem Inhalt:

cpqgymhim03:/etc/X11/xorg.conf.d # cat 05-eTurboTouch.conf
#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
        Identifier "evdev pointer eTurboTouch"
        MatchIsPointer "on"
        MatchProduct "eTurboTouch"
        Option "Ignore" "true"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev tablet eTurboTouch"
        MatchIsTablet "on"
        MatchProduct "eTurboTouch"
        Option "Ignore" "true"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection
Anmelden