IBM ThinkPad T30

Aus Gentoo Linux Wiki

Wechseln zu: Navigation, Suche

[Bearbeiten] Trackpoint und Touchpad unter X

Um das Touchpad mit allen Funktionen nutzen zu können muss der Synaptics Treiber für X installiert sein

emerge synaptics

Um den Trackpoint und das Touchpad gleichzeitig unter X nutzen zu können muss die Datei /etc/X11/xorg.conf wie folgt angepasst werden:


Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen         0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Mouse1" "AlwaysCore"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection


Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "synaptics"
        Option      "Protocol" "auto-dev"
        Option        "LeftEdge"      "1700"
        Option        "RightEdge"     "5300"
        Option        "TopEdge"       "1700"
        Option        "BottomEdge"    "4200"
        Option        "FingerLow"     "25"
        Option        "FingerHigh"    "30"
        Option        "MaxTapTime"    "180"
        Option        "MaxTapMove"    "220"
        Option        "VertScrollDelta" "100"
        Option        "MinSpeed"      "0.06"
        Option        "MaxSpeed"      "0.12"
        Option        "AccelFactor" "0.0010"
        Option        "SHMConfig"     "on"
        Option       "Repeater"      "/dev/ps2mouse"
EndSection

Section "InputDevice"
        Identifier      "Mouse1"
        Driver          "mouse"
        Option "Protocol"       "auto"
        Option "Device"         "/dev/mouse"
EndSection

[Bearbeiten] Externe Links

'Persönliche Werkzeuge