Touchpad
Se você usa xfce, openbox, fluxbox ou algum gerenciador de janelas independente, que não ofereça uma suíte de aplicativos, que inclui o gerenciador do touchpad, você precisa configurar isso manualmente. Contudo, a configuração é bastante simples.
Crie a pasta (se não existir) /etc/X11/xorg.conf.d/ e dentro dela, o arquivo 10-evdev.conf.
Conteúdo do arquivo:
Section "InputClass"
Identifier "Mouse"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "Keyboard"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "xkbmodel" "evdev"
Option "xkblayout" "us"
Option "xkbvariant" ""
Option "xkbrules" "base"
Option "xkboptions" "terminate:ctrl_alt_bksp"
EndSection
Section "InputClass"
Identifier "Toutchpad"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "synaptics"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
Option "RTCornerButton" "2"
Option "RBCornerButton" "3"
Option "HorizTwoFingerScroll" "false"
Option "CircularScrolling" "false"
Option "VertTwoFingerScroll" "false"
Option "VertEdgeScroll" "true"
EndSection
Com isso, basta reiniciar o X, e o touchpad deve funcionar normalmente.
Créditos do arquivo: Yporti