如何从 19.04 卸载 Gestures Python GUI 应用程序

如何从 19.04 卸载 Gestures Python GUI 应用程序

我在 Dell Venue 11 Pro 上安装了 19.04,虽然它可以与触摸屏配合使用,但它没有很多手势来使其更加实用。我找到了一个名为 Gestures 的应用程序,它是 libinput-gestures 的 GUI。我安装了先决条件,它可以工作,但 GUI 部分清除了 libinput-gestures 的默认配置,找不到配置文件。我修改了应用程序的配置文件,但它仍然不起作用。

因此,现在我只想返回 libinput-gestures 的默认设置,并跳过 GUI 位,但我不知道如何处理卸载,也找不到有关如何执行卸载的任何信息。我​​在终端中运行了以下命令:

git clone https://gitlab.com/cunidev/gestures
cd gestures
sudo python3 setup.py install

任何建议都很好:)

答案1

阅读完代码后(https://gitlab.com/cunidev/gestures/blob/master/gestures/configfile.py

看起来它确实创建了一个备份

self.filePath = path + "/.config/libinput-gestures.conf"
self.backupPath = path + "/.config/libinput-gestures.conf.bak"

尝试

mv ~/.config/libinput-gestures.conf.bak  ~/.config/libinput-gestures.conf 

答案2

Try These steps. First go to below directory to manually remove icon/launcher or desktop entry

    cd /usr/share/applications
then paste these lines to remove it 

    sudo rm -r org.cunidev.gestures.desktop

之后按照以下步骤操作

cd /usr/share/metainfo

sudo rm  -r org.cunidev.gestures.appdata.xml

它将删除元信息,并且你将无法在启动器中找到该手势

相关内容