在Ubuntu 12.10上成功安装touchegg之后,该怎么办?


8

我刚刚在Ubuntu 12.10上成功安装了toucheggtouchegg gui。但是,现在我仍然无法通过touchegg使用多点触摸手势。当我在触摸板上使用三个或更多个手指时,什么也没发生。但是,Ubuntu的两根手指滚动仍然可以正常工作。

我可以使用touchegg GUI配置并为触摸板设置所需的任何移动方式。但是,它不起作用。

那么,我应该怎么做才能使touchegg工作呢?

Answers:


2

您需要执行的操作禁用了Unity默认手势:

1.您必须下载Unity源代码:

sudo apt-get build-dep unity

cd /tmp

mkdir unity

cd unity

apt-get source unity

2.我们必须编辑一个文件:

sudo gedit /tmp/unity/unity-*/plugins/unityshell/src/unityshell.cpp

然后找到void UnityScreen::InitGesturesSupport()并注释掉(加#到该行的开始)都开始用线gestures_是在之间{ and }

3.现在我们必须重建.deb文件并安装它

cd /tmp/unity/unity-*

dpkg-buildpackage -us -uc -nc

cd ..

sudo dpkg -i *deb

sudo apt-get -f install

sudo apt-get autoremove

注意:您可能要停止Unity升级,因为升级后它将重新激活手势。这可以通过运行以下命令来完成:

echo "unity hold"|sudo dpkg --set-selections

4. 重新启动如果重新启动后它仍然不起作用,则可能需要运行一些额外的命令:

synclient TapButton2=0

synclient TapButton3=0

synclient ClickFinger2=0

synclient ClickFinger3=0

synclient HorizTwoFingerScroll=0

synclient VertTwoFingerScroll=0

希望这可以让您启动并运行

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.