T60 Ubuntu Tricks
Login Beep ausschalten (in /etc/modprobe.d/blacklist
#disable login beep
blacklist pcspkr
Touchpad ausschalten (in xorg.conf)
Section “InputDevice”
Identifier “Synaptics Touchpad”
Driver “synaptics”
Option “SendCoreEvents” “true”
Option “Device” “/dev/psaux”
Option “Protocol” “auto-dev”
Option “HorizScrollDelta” “1″
Option “TouchpadOff” “1″
EndSection
Scrollen mit Trackpoint und mittlerer Taste (in xorg.conf)
Section “InputDevice”
Identifier “Configured Mouse”
Driver “mouse”
Option “CorePointer”
Option “Device” “/dev/input/mice”
Option “Protocol” “ImPS/2″
Option “ZAxisMapping” “4 5″
Option “Emulate3Buttons” “true”
#enable scrolling trackpoint
Option “EmulateWheel” “on”
Option “EmulateWheelButton” “2”
EndSection