Gnome 默认使用 Alt+鼠标左键拖动来移动窗口 - 我恨此功能会破坏我使用的某些应用程序。在 Gnome2 中,您可以在其中一个设置对话框中更改修饰键,但我在 Gnome3 中找不到相应的修饰键,有人能给我指明正确的方向吗?
答案1
GNOME Shell 窗口管理器 Mutter 基于 Metacity (GNOME 2)并使用相同的设置。它们位于 GConf 中/apps/metacity
。
使用gconf-编辑器或者gconftool-2将/apps/metacity/general/mouse_button_modifier
设置更改为您喜欢的修饰键。例如,要选择“Windows”键,我使用:
gconftool-2 --set /apps/metacity/general/mouse_button_modifier --type string "<Super>"
在最近的 GNOME 版本中,配置是通过 GSettings 访问的,Linux 使用dconf
后端。要通过 GSettings 更改设置(推荐),请使用:
gsettings set org.gnome.desktop.wm.preferences mouse-button-modifier "'<Super>'"
要将其直接写入 dconf 后端,请使用:
dconf write /org/gnome/desktop/wm/preferences/mouse-button-modifier "'<Super>'"
你也可以在 GNOME Tweak Tool 中找到它Windows → 用于窗口单击操作的修饰符。
更改应立即生效。