Cuvou
2008-11-25, 06:46 PM CST
I installed Fedora 10 on my laptop and totally love it (finally my wireless just worked out of the box. It's an Atheros card). I never was a fan of tap-to-click on laptop touchpads and usually disable them by editing Xorg.conf and adding the MaxTapTime option to be 0. Only for some reason F10 didn't create an Xorg.conf file automatically (must've been going off the default settings which worked really well). I installed system-config-display to go through that to have it generate an Xorg.conf file, but the file didn't contain the info for the touchpad.
Here's my current Xorg.conf plus some code that I copied from online in an effort to get the touchpad to be configurable:
[kirsle@acer Desktop]$ cat /etc/X11/xorg.conf
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
# keyboard added by rhpxl
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105+inet"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
Option "SHMConfig" "true"
Option "MaxTapTime" "0"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "radeon"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
I installed gsynaptics and it wanted the SHMConfig option, but for some reason the changes I made to the config don't get picked up (even restarted X).
It's not *too* big of a deal, and it would be easier if some program would've generated Xorg.conf for me (including the touchpad entry) so I could just edit it, which I used to do with previous versions of Fedora... just F10 didn't create this file automatically.
Here's my current Xorg.conf plus some code that I copied from online in an effort to get the touchpad to be configurable:
[kirsle@acer Desktop]$ cat /etc/X11/xorg.conf
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
# keyboard added by rhpxl
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105+inet"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
Option "SHMConfig" "true"
Option "MaxTapTime" "0"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "radeon"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
I installed gsynaptics and it wanted the SHMConfig option, but for some reason the changes I made to the config don't get picked up (even restarted X).
It's not *too* big of a deal, and it would be easier if some program would've generated Xorg.conf for me (including the touchpad entry) so I could just edit it, which I used to do with previous versions of Fedora... just F10 didn't create this file automatically.