如何配置原始 Ubuntu Wayland 手势(18.10)

如何配置原始 Ubuntu Wayland 手势(18.10)

我在 HP ZBook Studio G3 上运行 Ubuntu 18.10。在 Wayland 上运行默认 DE 时(通过单击登录屏幕上的 Ubuntu Wayland 选项),默认情况下我会获得以下触摸板手势:

-双指滚动

-四指在桌面之间滑动

-三指捏合打开“活动”

但是,在触摸板设置中只能配置双指滚动手势。有人知道在哪里/如何配置其他两个手势吗?

答案1

https://extensions.gnome.org/extension/1253/extended-gestures/

适用于 Pop Os Wayland...尝试了其他东西(不是 fusuma),但问题是 xdtools 不受 wayland 支持

但扩展却运行完美。

答案2

Wayland 不支持xdotool。这意味着您无法将手势映射到键盘快捷键。但您可以wmctrl通过外部脚本将其映射到。

  1. 安装https://github.com/bulletmark/libinput-gestures
  2. ~/.config/libinput-gestures.conf用内容创造
swipe_threshold 20
gesture swipe down 3 ~/.config/scripts/wsdown
gesture swipe up 3 ~/.config/scripts/wsup
  1. ~/.config/scripts/wsdown用内容创造
#! /bin/bash

WS=$(wmctrl -d | grep '*' | awk '{print $1}'); wmctrl -s $(($WS - 1))

  1. ~/.config/scripts/wsup用内容创造
#! /bin/bash

WS=$(wmctrl -d | grep '*' | awk '{print $1}'); wmctrl -s $(($WS + 1))

  1. 使它们可执行
chmod +x ~/.config/scripts/wsdown
chmod +x ~/.config/scripts/wsup
  1. 重启 libinput-gestures
libinput-gestures-setup restart

你也可以通过克隆仓库来自动执行此操作https://github.com/HasinduLanka/FreshLinux并运行config.gestures.sh脚本. 它将下载并安装 libinput-gestures,为您配置 3 指手势。

安装 libinput-gestures 后,请确保重新启动计算机。

答案3

我想像下面这样的简单文章就能最大程度地解决你的疑问

https://italolelis.com/posts/multitouch-gestures-ubuntu-fusuma/

通过上述文章,您将能够安装fusuma并更改config.yml您必须在 下手动创建的/.config。您可以添加您喜欢的手势以及它将绑定的按键。

如果您需要更多帮助,请提出请求。

相关内容