Answers:
在较新的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拖动来进行与应用程序相关的操作)
mouse-button-modifier
为<Alt>。
gsettings
选项在Ubuntu 18.04上仍然有效。
在Cinnamon(而不是Gnome3)中,相应的设置为:
gsettings set org.cinnamon.desktop.wm.preferences resize-with-right-button true
或在中找到对应的路径dconf-editor
。
mouse-button-modifier
如果您更愿意使用Super
键而不是Alt
键来移动/调整大小行为(也可用于与其他应用程序(例如Blender)发生冲突),还请参见相同路径。
只需为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中明确设置它。
dconf-editor
。