Quantcast
Channel: Ubuntu Forums - Apple Hardware Users
Viewing all articles
Browse latest Browse all 2868

TouchEgg on Kubuntu 17.04 ... a quick fix

$
0
0
Just relaying some information .... Due to a change in xserver-xorg-input-synaptics 1.9.0-1ubuntu1, touchegg won't work out of the box under Kubuntu 17.04.

As a temporary workaround ( see here and here), revert to an older version of the synaptics driver, e.g. ...
Code:

sudo apt install -y git build-essential libevdev-dev autoconf  automake libmtdev-dev xorg-dev xutils-dev libtool
sudo apt remove -y xserver-xorg-input-libinput
sudo apt remove -y xserver-xorg-input-synaptics
git clone https://github.com/Chosko/xserver-xorg-input-synaptics.git
cd xserver-xorg-input-synaptics
./autogen.sh
./configure --exec_prefix=/usr
make
sudo make install

... and ensure /etc/X11/xorg.conf.d/60-synaptics.conf contains ...
Code:

Section "InputClass"
    Identifier      "evdev touchpad catchall"
    Driver          "synaptics"
    MatchDevicePath "/dev/input/event*"
    MatchIsTouchpad "on"
    Option          "Protocol" "event"
    Option          "SHMConfig" "on"
EndSection

After a reboot, touchegg works just fine ... assuming you've installed it.

Viewing all articles
Browse latest Browse all 2868

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>