63

I'm frustrated that this was removed/altered in gnome-shell3. There are certain key bindings for resizing and moving windows like alt+right click etc, that I'd like back. I've tried to use the system settings but to no avail. Has anyone else worked with this and got it to work?

Jim
  • 994
  • 2
  • 9
  • 16

6 Answers6

105

In more recent gnome versions (e.g., gnome-shell), you need to use this instead:

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

Gnome defaults to using the Super ("Windows") key for window actions, so the above alone will enable moving (super-leftdrag) and resizing (super-rightdrag). To use the Alt key instead of the Super key do:

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

(note that using the Alt key for window operations will interfere with some apps, like Inkscape, that use alt-click and alt-drag for app related actions)

bain
  • 194
  • 1
  • 7
drizzd
  • 1,166
  • 1
  • 8
  • 3
9

If you install GNOME Tweaks, there's an option to "Resize with secondary click". Checking it will enable Super+RMB to resize windows.

Dan Dascalescu
  • 7,519
  • 5
  • 19
  • 25
4

Additionally to using gsettings and instead of using the deprecated gconf-editor, you can install the newer dconf-editor and find and change relevant keys there. Searching "resize with" will find its key regardless of used WM.

Minix
  • 5,735
  • 8
  • 28
  • 45
yrtimiD
  • 141
  • 2
3

In Cinnamon (rather than Gnome3) the corresponding setting is:

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

Or find the corresponding path in dconf-editor.

Also see mouse-button-modifier under the same path if you'd rather use the Super key instead of the Alt key for move/resize behaviour (useful for conflicts with other apps such as blender).

RobinJ
  • 1,527
  • 2
  • 10
  • 16
tylerl
  • 2,438
  • 15
  • 18
  • Your command worked flawlessly, thanks - but I didn't find anything like that path in gconf-editor. Where do those "org.cinnamon.."-like paths reside? (I am running on Linux Mint right now). – stolsvik Jun 29 '14 at 21:59
  • dconf, not gconf. – RobinJ Jun 16 '15 at 08:55
3

You can use gconf-editor for this. Enable this setting:

/apps/metacity/general/resize_with_right_button
Mat
  • 51,578
  • 10
  • 158
  • 140
Felix Yan
  • 663
  • 1
  • 6
  • 13
  • Unfortunately that doesn't work in later versions of GNOME. The gconf settings are simply not used, it seems. – Victor Jan 27 '14 at 18:35
1

Just adding that for Deepin linux, the settings are wrapped in com.deepin.wrap.gnome, so I used

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

instead. Works flawlessly and what a timesaving feature (no more trying to grab the titlebar or tiny window borders)!

Note that since I do use Inkscape sometimes, I prefer the <Super> key. I had to set it explicitely in Deepin..

4levels
  • 113
  • 5