Fedora

如何在 Fedora MATE/GNOME/KDE 中啟用觸摸手勢?

  • April 25, 2019

需要知道如何啟用觸摸手勢,例如多指滑動到下一個工作區…

Ubuntu 有 libinput-gestures,但我如何在 Fedora 上安裝它?

我見過的所有 Copr 儲存庫都已經過時了。

安裝:

以下在 Fedora 29 中對我有用!

# Install Requirements
sudo dnf install \
           xdotool \
           wmctrl \
           git

# Add Groups
sudo gpasswd -a $USER input
exec sg input newgrp $(id -gn)

# Add Multitouch Gestures
ORG_DIR=$PWD
cd /usr/src
sudo git clone https://github.com/bulletmark/libinput-gestures.git
cd libinput-gestures
sudo make install
libinput-gestures-setup autostart
libinput-gestures-setup start
cd $ORG_DIR

***注意:***如果有註銷並重新修復問題,則應該沒有錯誤。


配置:

根據需要配置選項複製/etc/libinput-gestures.conf~/.config/libinput-gestures.conf和編輯。

引用自:https://unix.stackexchange.com/questions/515382