From Fedora Project Wiki

No edit summary
No edit summary
Line 19: Line 19:


<pre>
<pre>
Section  “InputClass”
Section  "InputClass"
Identifier  “touchpad catchall”
Identifier  "touchpad catchall"
Driver  “synaptics”
Driver  "synaptics"
MatchIsTouchpad  “on”
MatchIsTouchpad  "on"


####################################
####################################
## Two lines that you need to add ##
## Two lines that you need to add ##
Option  “TapButton1″ “1″
Option  "TapButton1" "1"
Option  “VertEdgeScroll” “1″
Option  "VertEdgeScroll" "1"
####################################
####################################


MatchDevicePath  /dev/input/event*
MatchDevicePath  "/dev/input/event*"
EndSection
EndSection
</pre>
</pre>
Line 48: Line 48:


<pre>
<pre>
Section  “InputClass”
Section  "InputClass"
Identifier  “touchpad catchall”
Identifier  "touchpad catchall"
Driver  “synaptics”
Driver  "synaptics"
MatchIsTouchpad  “on”
MatchIsTouchpad  "on"


####################################
####################################
## Two lines that you need to add ##
## Two lines that you need to add ##
Option  “TapButton1″ “1″
Option  "TapButton1" "1"
Option  “VertEdgeScroll” “1″
Option  "VertEdgeScroll" "1"
####################################
####################################


MatchDevicePath  /dev/input/event*
MatchDevicePath  "/dev/input/event*"
EndSection
EndSection
</pre>
</pre>


=== MATE ===
=== MATE ===

Revision as of 06:36, 12 September 2012

Note.png
Page maintainer
This page is maintained by FranciscoD. Please feel free to contact the maintainer for queries or other issues

Scope

Fedora tries to make various desktop environments available to its users. Since Fedora tries to stay as close to upstream as possible, we follow the various defaults selected by the desktop environment upstreams. Generally, this entails a disabled touchpad click by default. This wiki page tries to compile the different methods that can be used to enable "tapping" on various desktop environments.

Desktop configurations

GNOME

The "mouse and touchpad" utility can be used to enable tapping and set scrolling options in GNOME.

KDE

LXDE

Copy the /usr/share/X11/xorg.conf.d/50-synaptics.conf file to /etc/X11/xorg.conf.d/

cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf

Then, in your favourite text editor, modify this file as such:

Section  "InputClass"
Identifier  "touchpad catchall"
Driver  "synaptics"
MatchIsTouchpad  "on"

####################################
## Two lines that you need to add ##
Option  "TapButton1"  "1"
Option  "VertEdgeScroll"  "1"
####################################

MatchDevicePath  "/dev/input/event*"
EndSection


XFCE

Note.png
XFCE 4.10 in Fedora 18
XFCE in Fedora 18 will be version 4.10 which will have a utility similar to GNOME

For Fedora <= 17, and therefore XFCE <= 4.8:

Copy the /usr/share/X11/xorg.conf.d/50-synaptics.conf file to /etc/X11/xorg.conf.d/

cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf

Then, in your favourite text editor, modify this file as such:

Section  "InputClass"
Identifier  "touchpad catchall"
Driver  "synaptics"
MatchIsTouchpad  "on"

####################################
## Two lines that you need to add ##
Option  "TapButton1"  "1"
Option  "VertEdgeScroll"  "1"
####################################

MatchDevicePath  "/dev/input/event*"
EndSection

MATE