This article details the installation and configuration process of the Synaptics input driver for Synaptics (and ALPS) touchpads found on most notebooks.
The Synaptics driver can be installed with the package xf86-input-synaptics .
The primary method of configuration for the touchpad is through an
Xorg
server configuration file. After installing
xf86-input-synaptics
, a default configuration file is located at
/usr/share/X11/xorg.conf.d/70-synaptics.conf
. Users can copy this file to
/etc/X11/xorg.conf.d/
and edit it to configure the various driver options available. Refer to the
synaptics(4)
manual page for a complete list of available options. Machine-specific options can be discovered using
#Synclient
.
The following example file configures some common options, including vertical, horizontal and circular scrolling as well as tap-to-click:
/etc/X11/xorg.conf.d/70-synaptics.conf
Section "InputClass" Identifier "touchpad" Driver "synaptics" MatchIsTouchpad "on" Option "TapButton1" "1" Option "TapButton2" "3" Option "TapButton3" "2" Option "VertEdgeScroll" "on" Option "VertTwoFingerScroll" "on" Option "HorizEdgeScroll" "on" Option "HorizTwoFingerScroll" "on" Option "CircularScrolling" "on" Option "CircScrollTrigger" "2" Option "EmulateTwoFingerMinZ" "40" Option "EmulateTwoFingerMinW" "8" Option "CoastingSpeed" "0" Option "FingerLow" "30" Option "FingerHigh" "50" Option "MaxTapTime" "125" EndSection
Option "RBCornerButton" "3"
to achieve Ubuntu style tap behaviour for right mouse button in lower right corner)TapButton2
option to be triggered (which will more than likely paste from your clipboard), and you do not mind losing two-finger-tap functionality, set TapButton2
to 0
. Alternatively, see #Disable touchpad while typing.CoastingSpeed
to 0
.FingerLow
and FingerHigh
and vice versa. Remember that FingerLow
should be smaller than FingerHigh
Next to the traditional method of configuration, the Synaptics driver also supports on the fly configuration. This means that users can set certain options through a software application, these options are applied immediately without needing to restart Xorg. This is useful to test configuration options before you include them in the configuration file or a script. Note that on the fly configuration is not persistent and lasts only until the Xorg server exists.
To change these settings in Xfce:
To change these settings in Cinnamon:
It is possible to configure the way MATE handles the touchpad:
dconf-editor
.org.mate.desktop.peripherals.touchpad
folder.To prevent Mate settings daemon from overriding existing settings, do as follows:
dconf-editor
.org.mate.SettingsDaemon.plugins.mouse
.Depending on your model, synaptic touchpads may have or lack capabilities. We can determine which capabilities your hardware supports by using xinput(1).
First, find the name of your touchpad:
$ xinput listYou can now use xinput to find your touchpad's capabilities:
$ xinput list-props "SynPS/2 Synaptics TouchPad" | grep CapabilitiesSynaptics Capabilities (309): 1, 0, 1, 0, 0, 1, 1From left to right, this shows:
1
: device has a physical left button0
: device does not have a physical middle button1
: device has a physical right button0
: device does not support two-finger detection0
: device does not support three-finger detection1
: device can configure vertical resolution1
: device can configure horizontal resolutionUse xinput list-props "SynPS/2 Synaptics TouchPad"
to list all device properties. See synaptics(4) for full documentation of the Synaptics properties.
Synclient can configure every option available to the user as documented in synaptics(4). A full list of the current user settings can be brought up:
$ synclient -lEvery listed configuration option can be controlled through synclient, for example:
$ synclient PalmDetect=1
$ synclient TapButton2=3
$ synclient TouchpadOff=1
After you have successfully tried and tested your options through synclient, you can make these changes permanent by adding them to /etc/X11/xorg.conf.d/70-synaptics.conf
.
The tool evtest can display pressure and placement on the touchpad in real-time, allowing further refinement of the default Synaptics settings. The evtest monitoring can be started with:
$ evtest /dev/input/eventXX denotes the touchpad's ID. It can be found by looking at the output of
cat /proc/bus/input/devices
.evtest needs exclusive access to the device which means it cannot be run together with an X server instance. You can either kill the X server or run evtest from a different virtual terminal (e.g., by pressing
Ctrl+Alt+F2
).The tool xorg-xev can display taps, clicks, pressure, placement and other measured parameters in real-time, allowing still further refinement of the default Synaptics settings. xev can be run in X and needs no specifics. using the
-event
parameter, it is possible to restrict the types of events that are reported.Circular scrolling
Circular scrolling is a feature that Synaptics offers which closely resembles the behaviour of iPods. Instead of (or additional to) scrolling horizontally or vertically, you can scroll circularly. Some users find this faster and more precise. To enable circular scrolling, add the following options to the touchpad device section of
/etc/X11/xorg.conf.d/70-synaptics.conf
:/etc/X11/xorg.conf.d/70-synaptics.confSection "InputClass" Option "CircularScrolling" "on" Option "CircScrollTrigger" "0" EndSectionThe option
CircScrollTrigger
may be one of the following values, determining which edge circular scrolling should start:0 All Edges 1 Top Edge 2 Top Right Corner 3 Right Edge 4 Bottom Right Corner 5 Bottom Edge 6 Bottom Left Corner 7 Left Edge 8 Top Left CornerSpecifying something different from zero may be useful if you want to use circular scrolling in conjunction with horizontal and/or vertical scrolling. If you do so, the type of scrolling is determined by the edge you start from.
To scroll fast, draw small circles in the center of your touchpad. To scroll slowly and more precise, draw large circles.
Natural scrolling
It is possible to enable natural scrolling through Synaptics. Simply use negative values for
VertScrollDelta
andHorizScrollDelta
like so:/etc/X11/xorg.conf.d/70-synaptics.confSection "InputClass" Option "VertScrollDelta" "-111" Option "HorizScrollDelta" "-111" EndSectionSoftware toggle
You might want to turn the touchpad on and off with a simple button click or shortcut. This can be done by binding the following xinput-based script:
/usr/local/bin/touchpad_toggle.sh#!/bin/bash declare -i ID ID=$(xinput list | grep -Eio '(touchpad|glidepoint)\s*id=[0-9]{1,2}' | grep -Eo '[0-9]{1,2}') declare -i STATE STATE=$(xinput list-props "$ID" | grep 'Device Enabled' | awk '{print $4}') if [ "$STATE" -eq 1 ] xinput disable "$ID" # echo "Touchpad disabled." # notify-send -a 'Touchpad' 'Touchpad Disabled' -i input-touchpad xinput enable "$ID" # echo "Touchpad enabled." # notify-send -a 'Touchpad' 'Touchpad Enabled' -i input-touchpadTip: When using external monitors with bumblebee, the touchpad can be configured on the second X server by prependingDISPLAY=:8
to the command.Alternatively, synclient can be used to toggle the touchpad. However, it can only turn off touch events but not physical clickpad button usage:
/usr/local/bin/touchpad.sh#!/bin/bash synclient TouchpadOff=$(synclient -l | grep -c 'TouchpadOff.*=.*0')Disable touchpad while typing
Using the driver's automatic palm detection
First of all you should test if it works properly for your touchpad and if the settings are accurate. Enable palm detection with
$ synclient PalmDetect=1Then test the typing. You can tweak the detection by setting the minimum width for the touch to be considered a palm, for example:
$ synclient PalmMinWidth=8And you can tweak the minimum pressure required for the touch to be considered a palm, for example:
$ synclient PalmMinZ=100Tip: To help find the best values for palm detection, you can use evtest to see the width and Z values reported during touchpad use.Once you have found the correct settings, you can add them to your config file:
Option "PalmDetect" "1" Option "PalmMinWidth" "8" Option "PalmMinZ" "100"Warning: For some touchpads, an issue with the kernel can cause the palm width to always be reported as 0. This breaks palm detection in a majority of cases. Pending an actual fix, you can patch the synaptics package to use only Z for palm detection.Tip: If you experience problems with consistent palm detection for your hardware, an alternative to try is libinput.Using syndaemon
syndaemon(1) monitors keyboard activity and disables the touchpad while typing. It has several options to control when the disabling occurs. View them with
$ syndaemon -?For example, to disable tapping and scrolling for 0.5 seconds after each keypress (ignoring modifier keys like
Ctrl
), use$ syndaemon -i 0.5 -t -K -ROnce you have determined the options you like, you should use your login manager or xinitrc to have it run automatically when X starts. The
-d
option will make it start in the background as a daemon.Disable touchpad on mouse detection
With the assistance of udev, it is possible to automatically disable the touchpad if an external mouse has been plugged in. To achieve this, use one of the following rules.
Basic desktop
This is a basic rule generally for non-"desktop environment" sessions:
/etc/udev/rules.d/01-touchpad.rulesSUBSYSTEM=="input", KERNEL=="mouse[0-9]*", ACTION=="add", ENV{DISPLAY}=":0", ENV{XAUTHORITY}="/home/username/.Xauthority", RUN+="/usr/bin/synclient TouchpadOff=1" SUBSYSTEM=="input", KERNEL=="mouse[0-9]*", ACTION=="remove", ENV{DISPLAY}=":0", ENV{XAUTHORITY}="/home/username/.Xauthority", RUN+="/usr/bin/synclient TouchpadOff=0"If the touchpad is always deactivated at startup, even when no mouse is plugged in, try adding the following criteria between the
KERNEL
andACTION
parameters above:ATTRS{name}!="*TouchPad", ATTRS{name}!="*Stick",
This article or section is out of date.
Reason: GDM stores the Xauthority files in/run/user/uid/gdm/Xauthority
. (Discuss in Talk:Touchpad Synaptics)GDM stores the Xauthority files in
/var/run/gdm
in a randomly-named directory. You should find your actual path to the Xauthority file which can be done usingps ax
. For some reason, multiple authority files may appear for a user, so a rule like this will be necessary:/etc/udev/rules.d/01-touchpad.rulesSUBSYSTEM=="input", KERNEL=="mouse[0-9]", ACTION=="add", PROGRAM="/usr/bin/find /var/run/gdm -name username -print0 -quit", ENV{DISPLAY}=":0", ENV{XAUTHORITY}="$result/database", RUN+="/usr/bin/synclient TouchpadOff=1" SUBSYSTEM=="input", KERNEL=="mouse[0-9]", ACTION=="remove", PROGRAM="/usr/bin/find /var/run/gdm -name username -print0 -quit", ENV{DISPLAY}=":0", ENV{XAUTHORITY}="$result/database", RUN+="/usr/bin/synclient TouchpadOff=0"Furthermore, you should validate that your udev script is running properly. You can check for the conditions by running
udevadm monitor -p
with root privileges.With syndaemon running
syndaemon whether started by the user or the desktop environment can conflict with synclient and will need to be disabled. A rule like this will be needed:
/etc/udev/rules.d/01-touchpad.rulesSUBSYSTEM=="input", KERNEL=="mouse[0-9]", ACTION=="add", PROGRAM="/usr/bin/find /var/run/gdm -name username -print -quit", ENV{DISPLAY}=":0", ENV{XAUTHORITY}="$result/database", RUN+="/bin/sh -c '/usr/bin/synclient TouchpadOff=1 ; sleep 1; /bin/killall syndaemon; '"touchpad-state
This article or section needs language, wiki syntax or style improvements. See Help:Style for reference.
Reason: Command block requires a prompt symbol. (Discuss in Talk:Touchpad Synaptics)A touchpad-state-gitAUR package created around the udev rules in #With syndaemon running is available. It includes a udev rule and script:
touchpad-state [--off] [--on]GNOME
GNOME users can install the GNOME shell extension Touchpad Indicator, change Switch Method to Synclient and enable Automatically switch Touchpad On/Off in its preferences.
If using Plasma, the plasma-desktop package can be used to manage the touchpad.
System with multiple X sessions
The factual accuracy of this article or section is disputed.
Reason: Hard-codedDISPLAY
variable does not work with multiple X sessions. (Discuss in Talk:Touchpad Synaptics)For an environment where multiple users are present, a slightly different approach is needed to detect the current users X environment. This script will help achieving this:
/usr/bin/mouse-pnp-event-handler.sh#!/bin/sh ## $1 = "add" / "remove" ## $2 = %k from udev ## Set TRACKPAD_NAME according to your configuration. ## Check your trackpad name with: ## find /sys/class/input/ -name mouse* -exec udevadm info -a {} \; | grep 'ATTRS{name}' TRACKPAD_NAME="SynPS/2 Synaptics TouchPad" USERLIST=$(w -h | cut -d' ' -f1 | sort | uniq) MOUSELIST=$(find /sys/class/input/ -name mouse*) for CUR_USER in ${USERLIST}; do CUR_USER_XAUTH="$(sudo -Hiu ${CUR_USER} env | grep -e "^HOME=" | cut -d'=' -f2)/.Xauthority" ## Can't find a way to get another users DISPLAY variable from an isolated root environment. Have to set it manually. #CUR_USER_DISPL="$(sudo -Hiu ${CUR_USER} env | grep -e "^DISPLAY=" | cut -d'=' -f2)" CUR_USER_DISPL=":0" export XAUTHORITY="${CUR_USER_XAUTH}" export DISPLAY="${CUR_USER_DISPL}" if [ -f "${CUR_USER_XAUTH}" ]; then case "$1" in "add") /usr/bin/synclient TouchpadOff=1 /usr/bin/logger "USB mouse plugged. Disabling touchpad for $CUR_USER. ($XAUTHORITY - $DISPLAY)" "remove") ## Only execute synclient if there are no external USB mice connected to the system. EXT_MOUSE_FOUND="0" for CUR_MOUSE in ${MOUSELIST}; do if [ "$(cat ${CUR_MOUSE}/device/name)" != "${TRACKPAD_NAME}" ]; then EXT_MOUSE_FOUND="1" if [ "${EXT_MOUSE_FOUND}" == "0" ]; then /usr/bin/synclient TouchpadOff=0 /usr/bin/logger "No additional external mice found. Enabling touchpad for $CUR_USER." logger "Additional external mice found. Won't enable touchpad yet for $CUR_USER."Update the
TRACKPAD_NAME
variable for your system configuration. Runfind /sys/class/input/ -name mouse* -exec udevadm info -a {} \; | grep 'ATTRS{name}'
to get a list of useful mice-names. Choose the one for your trackpad.Then have udev run this script when USB mices are plugged in or out, with these udev rules:
/etc/udev/rules.d/01-touchpad.rulesSUBSYSTEM=="input", KERNEL=="mouse[0-9]*", ACTION=="add", RUN+="/usr/bin/mouse-pnp-event-handler.sh add %k" SUBSYSTEM=="input", KERNEL=="mouse[0-9]*", ACTION=="remove", RUN+="/usr/bin/mouse-pnp-event-handler.sh remove %k"Buttonless touchpads (aka ClickPads)
Ever more laptops have a special kind of touchpad which has a single mouse button as part of the tracking plate, instead of external buttons. For example, the 2015 Dell XPS 13, HP series 4500 ProBooks, ThinkPad X220 and X1 ThinkPad series have this kind of a touchpad. By default, the whole button area is detected as a left button, so right and middle-click functions and click + drag will not work. It is possible to define two and three finger clicks as right and middle button clicks, and/or to define parts of the click pad surface as right and middle buttons. Note that although the driver registers multiple touches, it does not track individual fingers (as of version 1.7.1) which results in confusing behavior when using physical buttons of a clickpad for drag-and-drop and other gestures: you have to click with two or three fingers but then only move one of them while holding the button down with another. You can look into the xf86-input-mtrackAUR driver for better multitouch support.
Some desktop environments (KDE and GNOME at least) define sane and useful default configurations for clickpads, providing a right button at the bottom right of the pad, recognising two and three-finger clicks anywhere on the pad as right and middle clicks, and providing configuration options to define two and three-finger taps as right and middle clicks. If your desktop does not do this, or if you want more control, you can modify the touchpad section in
/etc/X11/xorg.conf.d/70-synaptics.conf
(or better, of your custom synaptics configuration file prefixed with a higher number). For example:/etc/X11/xorg.conf.d/70-synaptics.confSection "InputClass" Identifier "touchpad" Driver "synaptics" MatchIsTouchpad "on" # Enable clickpad/multitouch support Option "ClickPad" "true" # Middle-button emulation is not supported Option "EmulateMidButtonTime" "0" # Define right soft button at the bottom Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0" EndSectionThe format for the
SoftButtonAreas
option is (from synaptics(4)):RightButtonAreaLeft RightButtonAreaRight RightButtonAreaTop RightButtonAreaBottom MiddleButtonAreaLeft MiddleButtonAreaRight MiddleButtonAreaTop MiddleButtonAreaBottomThe above
SoftButtonAreas
option is commonly found in documentation or synaptics packages, and it defines the right half of the bottom 18% of the touchpad as a right button. There is no middle button defined. If you want to define a middle button remember one key piece of information from the manual; edge set to 0 extends to infinity in that direction.In the following example the right button will occupy the rightmost 40% of the button area and the middle button 20% of it in the center. The leftmost 40% remains as a left button (as does the rest of the clickpad): Option "SoftButtonAreas" "60% 0 82% 0 40% 59% 82% 0"
You can use synclient to check the soft button areas:
$ synclient -l | grep -i ButtonAreaRightButtonAreaLeft = 3914 RightButtonAreaRight = 0 RightButtonAreaTop = 3918 RightButtonAreaBottom = 0 MiddleButtonAreaLeft = 3100 MiddleButtonAreaRight = 3873 MiddleButtonAreaTop = 3918 MiddleButtonAreaBottom = 0If your buttons are not working, soft button areas are not changing, ensure you do not have a synaptics configuration file distributed by a package which is overriding your custom settings (i.e. some AUR packages distribute configurations prefixed with very high numbers).
These settings cannot be modified on the fly with synclient, however, xinput works:
xinput set-prop "SynPS/2 Synaptics TouchPad" "Synaptics Soft Button Areas" 4000 0 4063 0 3000 4000 4063 0You cannot use percentages with this command, so look at
/var/log/Xorg.0.log
to figure out the touchpad x and y-axis ranges.Bottom edge correction
In some cases, for example Toshiba Satellite P50, everything work out of the box except often your click are seen as mouse movement and the cursor will jump away just before registering the click. This can be easily solved running
$ synclient -l | grep BottomEdgetake the BottomEdge value and subtract a the wanted height of your button, then temporary apply with
$ synclient AreaBottomEdge=4000when a good value has been found make it a fixed correction with
/etc/X11/xorg.conf.d/70-synaptics.confOption "AreaBottomEdge" "4000"Note: The area will not act as touchpad if the touch begins in that area, but it can still be used if the touch has originated outside.Troubleshooting
Touchpad does not work after resuming from hibernate/suspend
Occasionally touchpads will fail to work when the computer resumes from sleep or hibernation. This can often be corrected without rebooting by
modprobe -r psmouse && modprobe psmouse proto=imps
),psmouse
may be a permanent option (when the touchpad is handled by another module, e.g. i2c_designware_platform
),psmouse.synaptics_intertouch=0
kernel parameter solves the issue permanently.Ctrl+Alt+F1
through F8
to switch to a console without using the mouse.If you are using a laptop computer and your touchpad does not work after switching the laptop's lid, you can just change your power management policy: when closing the lid, 'shutdown the screen' instead of 'suspend'(or 'hibernate'). This is useful for some laptops.
MATE will by default overwrite various options for your touchpad. This includes configurable features for which there is no graphical configuration within MATE's system control panel. This may cause it to appear that /etc/X11/xorg.conf.d/70-synaptics.conf
is not applied. Follow #MATE to prevent this behavior.
Due to the way Synaptics is currently set-up, 2 instances of the Synaptics module are loaded. We can recognize this situation by opening the xorg log file (/var/log/Xorg.0.log
) and noticing this:
/var/log/Xorg.0.log
[ 9304.803] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall" [ 9304.803] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"Notice how 2 differently named instances of the module are being loaded. In some cases, this causes the touchpad to become nonfunctional.
We can prevent this double loading by adding
MatchDevicePath "/dev/input/event*"
to our/etc/X11/xorg.conf.d/70-synaptics.conf
file:/etc/X11/xorg.conf.d/70-synaptics.confSection "InputClass" Identifier "touchpad catchall" Driver "synaptics" MatchIsTouchpad "on" MatchDevicePath "/dev/input/event*" Option "TapButton1" "1" Option "TapButton2" "2" Option "TapButton3" "3" EndSectionRestart X and check xorg logs again, the error should be gone and the touchpad should be functional.
related bugreport: FS#20830
related forum topics:
This can be caused by a number of issues;
There also seems to be a problem with laptops which have both a touchscreen & a touchpad, such as the Dell XPS 12 or Dell XPS 13. To fix this, you can blacklist the i2c_hid
driver, this does have the side-effect of disabling the touchscreen though.
This seems to be a known problem. Also see this thread.
Post kernel 3.15, having the module blacklisted may cause touchpad to stop working completely. Removing the blacklist should allow this to start working with limited functionality, see FS#40921.
In some cases, Synaptics touchpads only work partially. Features like two-finger scrolling or two-finger middle-click do not work even if properly enabled. This is probably related to the touchpad is not working problem mentioned above. Fix is the same, prevent double module loading.
If preventing the module from loading twice does not solve your issue, try commenting out the toggle MatchIsTouchpad
(which is now included by default in the Synaptics configuration).
If clicking with either 2 or 3 fingers is interpreted as a right-click, so you cannot get a middle click either way regardless of configuration, this bug is probably the culprit: https://bugs.freedesktop.org/show_bug.cgi?id=55365
Some users have their cursor inexplicably jump around the screen. There currently no patch for this, but the developers are aware of the problem and are working on it.
Another possibility is that you are experiencing IRQ losses related to the i8042 controller (this device handles the keyboard and the touchpad of many laptops), so you have two possibilities here:
rmmod && insmod
the psmouse
module.i8042.nomux=1
to your kernel parameters and reboot your machine.If that is the case, you can use this command to display information about your input devices:
$ cat /proc/bus/input/devicesSearch for an input device which has the name "SynPS/2 Synaptics TouchPad". The "Handlers" section of the output specifies what device you need to specify.
Example output:
$ cat /proc/bus/input/devicesI: Bus=0011 Vendor=0002 Product=0007 Version=0000 N: Name="SynPS/2 Synaptics TouchPad" P: Phys=isa0060/serio4/input0 S: Sysfs=/class/input/input1 H: Handlers=mouse0 event1 B: EV=b B: KEY=6420 0 7000f 0In this case, the
Handlers
aremouse0
andevent1
, so/dev/input/mouse0
would be used.
This article or section needs expansion.
Reason: TODO: explain how to apply this in/etc/X11/xorg.conf.d/70-synaptics.conf
. (Discuss in Talk:Touchpad Synaptics)Firefox and special touchpad events
You can enable/disable some special events that Firefox handles upon tapping or scrolling certain parts of your touchpad by editing the settings of those actions. Type
about:config
in your Firefox address bar. To alter options, double-click on the line in question.Firefox 17.0 and later
Horizontal scrolling will now by default scroll through pages and not through your history. To reenable Mac-style forward/backward with two-finger swiping, edit:
mousewheel.default.action.override_x = 2You may encounter accidental forwards/backwards while scrolling vertically. To change Firefox's sensitivity to horizontal swipes, edit:
mousewheel.default.delta_multiplier_xThe optimum value will depend on your touchpad and how you use it, try starting with
10
. A negative value will reverse the swipe directions.Opera: horizontal scrolling issues
Same as above. To fix it, go to Tools > Preferences > Advanced > Shortcuts. Select "Opera Standard" mouse setup and click "Edit". In "Application" section:
The factual accuracy of this article or section is disputed.
Reason: Description here is not so clear and I do not use Opera. Please make it clear.) (Discuss in Talk:Touchpad Synaptics)
These problems seem to be occurring on several models of LG laptops. Symptoms include: when pressing Mouse Button 1, Synaptics interprets it as ScrollUP and a regular button 1 click; same goes for button 2.
The scrolling issue can be resolved by entering in xorg.conf
:
/etc/X11/xorg.conf.d/xorg.conf
Option "UpDownScrolling" "0"Note: This will make Synaptics interpret one button push as three. There is a patch written by Oskar Sandberg [4] that removes these clicks.Apparently, when trying to compile this against the latest version of Synaptics it fails. The solution to this is using the Git repository for Synaptics [5].
To build the package after downloading the tarball and unpacking it, execute:
$ cd synaptics-git $ makepkgOther external mouse issues
First, make sure your section describing the external mouse contains this line (or that the line looks like this):
/etc/X11/xorg.conf.d/xorg.confOption "Device" "/dev/input/mice"If the
"Device"
line is different, change it to the above and try to restart X. If this does not solve your problem, make your touchpad theCorePointer
in the "Server Layout" section:/etc/X11/xorg.conf.d/xorg.confInputDevice "Touchpad" "CorePointer"and make your external device
"SendCoreEvents"
:/etc/X11/xorg.conf.d/xorg.confInputDevice "USB Mouse" "SendCoreEvents"Finally, add this to your external device's section:
/etc/X11/xorg.conf.d/xorg.confOption "SendCoreEvents" "true"If all of the above does not work for you, please check relevant bug trackers for possible bugs, or go through the forums to see if anyone has found a better solution.
Xorg.log.0 shows SynPS/2 Synaptics touchpad can not grab event device, errno=16
If you are using Xorg 7.4, you may get a warning like this from
/var/log/Xorg.0.log
. This is because the driver will grab the event device for exclusive use when using the Linux 2.6 event protocol. When it fails, X will return this error message.Grabbing the event device means that no other user space or kernel space program sees the touchpad events. This is desirable if the X configuration file includes
/dev/input/mice
as an input device, but is undesirable if you want to monitor the device from user space.If you want to control it, add or modify the
"GrabEventDevice"
option in you touchpad section in/etc/X11/xorg.conf.d/70-synaptics.conf
:/etc/X11/xorg.conf.d/70-synaptics.confOption "GrabEventDevice" "boolean"This will come into effect when X is restarted, though you can also change it by using synclient. When changing this parameter with the synclient program, the change will not take effect until the Synaptics driver is disabled and re-enabled. This can be achieved by switching to a text console and then switching back to X.
Synaptics loses multitouch detection after rebooting from Windows
Many drivers include a firmware that is loaded into flash memory when the computer boots. This firmware is not necessarily cleared upon shutdown, and is not always compatible with Linux drivers. The only way to clear the flash memory is to shutdown completely rather than using reboot. It is generally considered best practice to never use reboot when switching between operating systems.
Touchpad not recognized after shutdown from Arch
Certain touchpads (Elantech in particular) will fail to be recognized as a device of any sort after a standard shutdown from Arch Linux. There are multiple possible solutions to this problem:
i8042.kbdreset=1
can be set as kernel parameter.Newer Thinkpads do not have physical buttons for their Trackpoint anymore and instead use the upper area of the Clickpad for buttons (Left, Middle, Right). Apart from the ergonomic viewpoint this works quite well with current Xorg. Unfortunately, mouse wheel emulation using the middle button is not supported yet. Install xf86-input-evdev-trackpointAUR for a patched and properly configured version if you intend to use the Trackpoint.