如何获得Alt +鼠标右键再次调整窗口大小!


36

我对在gnome-shell3中删除/更改它感到沮丧。我想返回一些用于调整大小和移动窗口的键绑定,例如alt +右键单击等。我尝试使用系统设置,但无济于事。有没有其他人对此进行过处理并使其起作用?

Answers:


63

在较新的gnome版本(例如gnome-shell)中,您需要使用以下代码:

gsettings set org.gnome.desktop.wm.preferences resize-with-right-button true

Gnome默认使用Super(“ Windows”)键进行窗口操作,因此仅上述一项就可以启用移动(super-leftdrag)和调整大小(super-rightdrag)。要使用Alt键代替Super键,请执行以下操作:

gsettings set org.gnome.desktop.wm.preferences mouse-button-modifier '<Alt>'

(请注意,使用Alt键进行窗口操作会干扰某些应用程序,例如Inkscape,这些应用程序使用alt单击和alt拖动来进行与应用程序相关的操作)


1
您也可以通过GUI使用GUI更改此设置dconf-editor
维克多

1
如果要使用alt +右键单击,则可能还必须更改mouse-button-modifier为<Alt>。
gogators 2014年

1
这些gsettings选项在Ubuntu 18.04上仍然有效。
斯特凡·古里康

还要补充一点,它们也可以在Ubuntu 18.10中使用,这不仅是最初的答案,它在多年前更改时帮助我找到了它,而且在18.10中使用镜像工具(和其他项目)后未安装新的调整工具之后,我快要疯了。再次感谢。
herdingofthecats

1
现在,此设置显示在GNOME Tweaks应用程序的“ Windows”类别下。
theferrit32

3

您可以gconf-editor为此使用。启用此设置:

/apps/metacity/general/resize_with_right_button

不幸的是,这在更高版本的GNOME中不起作用。似乎根本不使用gconf设置。
维克多

3

在Cinnamon(而不是Gnome3)中,相应的设置为:

gsettings set org.cinnamon.desktop.wm.preferences resize-with-right-button true

或在中找到对应的路径dconf-editor

mouse-button-modifier如果您更愿意使用Super键而不是Alt键来移动/调整大小行为(也可用于与其他应用程序(例如Blender)发生冲突),还请参见相同路径。


谢谢,您的命令运行得很完美,但是-在gconf-editor中找不到类似的路径。那些类似“ org.cinnamon ..”的路径驻留在哪里?(我现在正在Linux Mint上运行)。
stolsvik

dconf,不是gconf。
RobinJ

2

除了使用gsettings(而不是使用已弃用的)之外gconf-editor,您还可以安装较新的版本,dconf-editor然后在此处查找和更改相关密钥。无论使用了什么WM,搜索“ resize with”都会找到其关键字。



0

只需为Deepin linux添加设置,这些设置就打包在中com.deepin.wrap.gnome,所以我使用了

gsettings set com.deepin.wrap.gnome.desktop.wm.preferences mouse-button-modifier '<Super>'
gsettings set com.deepin.wrap.gnome.desktop.wm.preferences resize-with-right-button true

代替。完美运行,节省时间(无需再尝试抓住标题栏或微小的窗口边框)!

请注意,由于有时会使用Inkscape,因此我更喜欢<Super>键。我必须在Deepin中明确设置它。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.