我想知道是否有办法在 Kubuntu 12.10 中启用多手指手势支持。我特别想快速更改桌面或最小化应用程序。其他功能也很棒 - 我想我喜欢 OSX 的做法。
答案1
抱歉,Kubuntu 12.10 不支持多指手势。至少不支持您所描述的那种。
但以防万一有人来这里寻求配置桌面环境的帮助,有几种选项可以从桌面更改或使用键盘最小化应用程序。
在系统偏好设置应用程序“K-> 应用程序 -> 系统偏好设置”中:转到快捷方式和手势。在左侧转到全局键盘快捷键。在名为“KDE 组件”的顶部菜单中选择 KWin。您现在可以编辑桌面环境的所有快捷方式。
温馨提示:您可以保存并加载 KDE 每个组件的所有收藏快捷方式的配置文件。
在较新的 KDE 版本中,有一个名为“鼠标手势”的新工具,它提供了与您的问题中描述的功能类似的一些功能。
更多相关信息请参阅: 系统设置/快捷方式和手势
答案2
英文:尝试使用libinput
细节
您必须使用 APT 安装软件包:
sudo apt install xdotool wmctrl libinput-tools
并将您的用户放入input
组:
sudo gpasswd -a $USER input
重新启动...并libinput-gestures
使用 GIT 安装:
git clone http://github.com/bulletmark/libinput-gestures
cd libinput-gestures
sudo ./libinput-gestures-setup instal
创建文件~/.config/libinput-gestures.conf
并使用你的配置进行膨胀。例如:
# Toggle Present Windows (Current desktop)
gesture swipe left 3 xdotool key alt+Tab
gesture swipe right 3 xdotool key shift+alt+Tab
# Terminal (I create the shortkeys in Kubuntu and apply it here)
gesture swipe down 3 xdotool key super+z
gesture swipe up 3 xdotool key super+z
# Show Desktop Grid
gesture swipe down 4 xdotool key control+F10
# Show Desktop
gesture swipe up 4 xdotool key super+d
# Show next desktop
gesture swipe right 4 xdotool key control+alt+Left
# Show previous desktop
gesture swipe left 4 xdotool key control+alt+Right
# Zoom (I create the shortkeys in Kubuntu and apply it here)
gesture pinch out xdotool key super+o
gesture pinch in xdotool key super+i
要设置为自动启动,请在终端中调用以下命令:
libinput-gestures-setup autostart
重启并享受:)
pt_BR: 使用者libinput
詳細信息
使用 APT 安装操作系统包:
sudo apt install xdotool wmctrl libinput-tools
现在,您已加入群组input
:
sudo gpasswd -a $USER input
libinput-gestures
重新开始...使用 GIT安装:
git clone http://github.com/bulletmark/libinput-gestures
cd libinput-gestures
sudo ./libinput-gestures-setup instal
创建或编辑文件夹~/.config/libinput-gestures.conf
以查看其配置。例子:
# Trocar as janelas (Área de trabalho atual)
gesture swipe left 3 xdotool key alt+Tab
gesture swipe right 3 xdotool key shift+alt+Tab
# Terminal (Eu criei os atalhos no Kubuntu e usei aqui)
gesture swipe down 3 xdotool key super+z
gesture swipe up 3 xdotool key super+z
# Mostrar a grid de janelas
gesture swipe down 4 xdotool key control+F10
# Mostrar a área de trabalho
gesture swipe up 4 xdotool key super+d
# Trocar a área de trabalho com a esquerda
gesture swipe right 4 xdotool key control+alt+Left
# Trocar a área de trabalho com a direita
gesture swipe left 4 xdotool key control+alt+Right
# Zoom (Eu criei os atalhos no Kubuntu e usei aqui)
gesture pinch out xdotool key super+o
gesture pinch in xdotool key super+i
为了配置自动启动,请在终端上执行:
libinput-gestures-setup autostart
感谢并赞成 :)