本文演示在Ubuntu 18.04系统中安装Fusuma及配置,帮助你获得更佳的触控板体验。Fusuma是一个命令行工具,它允许你配置触控板,包括多点触控手势,但它不能远程模拟macOS或Chrome OS上触控板体验的流畅性,虽然有些不足,也不失是一个使用触控板的好方案,以下将讲解它的安装方法,所使用的电脑是Dell XPS Developer edition笔记本。
安装Fusuma 必须做的第一件事是使用以下命令将你的用户添加到输入组: sudo gpasswd -a $USER input 退出,然后重新登录。 Fusuma必须与gem一起安装,这意味着你需要Ruby。因此,在安装Fusuma之前,必须先安装Ruby。打开终端窗口并发出命令: sudo apt-get install ruby 安装Ruby后,你需要使用以下命令安装单个依赖项: sudo apt-get install libinput-tools 可以使用以下命令安装可选的依赖项(用于发送快捷方式): sudo apt-get install xdotool 你现在可以使用以下命令安装Fusuma: sudo gem install fusuma
官方安装指南 1.Grant permission to read the touchpad device IMPORTANT: You MUST be a member of the INPUT group to read touchpad by Fusuma. $ sudo gpasswd -a $USER input Then, You MUST LOGOUT/LOGIN or REBOOT to assign this group. 2.Install libinput-tools You need libinput release 1.0 or later. $ sudo apt-get install libinput-tools 3.Install Fusuma $ sudo gem install fusuma 4.Install xdotool(optional) For sending shortcuts: $ sudo apt-get install xdotool
登录时运行Fusuma Fusuma必须正在运行,并且你不希望从命令行执行此操作。要将Fusuma设置为在登录时运行,请打开GNOME Dash,然后搜索“启动应用程序”。在“启动应用程序”工具中,单击“添加”按钮。在弹出下图的窗口中,输入名称和命令的Fusuma。
启动应用程序工具。配置启动应用程序后,单击“保存”,然后关闭该工具。退出GNOME并重新登录Fusuma。
配置Fusuma 现在我们可以配置手势了。你会发现向右滑动三指作为后退手势(在默认浏览器中),向左滑动三指是前向手势(同样,在默认浏览器中)。让我们改变这一点。打开终端窗口,然后使用以下命令打开配置文件: nano ~/.config/fusuma/config.yml 在该文件中,查找以下行: swipe: 3: left: command: 'xdotool key alt+Right' right: command: 'xdotool key alt+Left' 更改成下面代码: swipe: 3: left: command: 'xdotool key alt+Left' right: command: 'xdotool key alt+Right' 保存并关闭文件。退出GNOME,然后重新登录。打开浏览器,你现在应该可以使用左手三指向后滑动,向右滑动三指向前滑动。你还可以更改三指向上滑动和三指向下滑动,以及四指滑动手势。事实上,在这一点上,你应该很清楚如何配置Fusuma的三指和四指手势。 比如说,你想创建一个在Firefox中打开新选项卡的手势。你可以为此操作添加以下三指向下滑动: down: command: 'xdotool key ctrl+t' 保存并关闭该文件。 对配置文件进行任何更改后,必须注销并重新登录GNOME。
基本手势 Fusuma为Linux系统中的触控板提供了一些非常基本的多点触控手势。
Customize Gesture Mapping You can customize the settings for gestures to put and edit ~/.config/fusuma/config.yml. NOTE: You will need to create the ~/.config/fusuma directory if it doesn't exist yet. $ mkdir -p ~/.config/fusuma # create config directory $ nano ~/.config/fusuma/config.yml # edit config file.
相关主题 |