How to get alt+right mouse to resize windows again!
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?
window-manager mouse gnome-shell
add a comment |
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?
window-manager mouse gnome-shell
add a comment |
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?
window-manager mouse gnome-shell
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?
window-manager mouse gnome-shell
window-manager mouse gnome-shell
asked Jan 7 '12 at 6:52
JimJim
3591411
3591411
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
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)
1
You could also change this same setting with a GUI, viadconf-editor
.
– Victor
Jan 27 '14 at 18:35
1
If you want to use alt+right click, you might also have to changemouse-button-modifier
to <Alt>.
– gogators
Jul 25 '14 at 15:12
1
Thesegsettings
options still work on Ubuntu 18.04.
– Stéphane Gourichon
Aug 17 '18 at 23:10
Would like to add that they work in Ubuntu 18.10 also, and not only was this the original answer that helped me find it years ago when it changed, but after the new tweak tool in 18.10 not installing because of mirror problems (and other items), I was about to go mad. Thanks again.
– herdingofthecats
Nov 3 '18 at 13:31
add a comment |
You can use gconf-editor
for this. Enable this setting:
/apps/metacity/general/resize_with_right_button
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
add a comment |
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).
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 8:55
add a comment |
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.
add a comment |
If you install GNOME Tweaks, there's an option to "Resize with secondary click". Checking it will enable Super+RMB to resize windows.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f28514%2fhow-to-get-altright-mouse-to-resize-windows-again%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
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)
1
You could also change this same setting with a GUI, viadconf-editor
.
– Victor
Jan 27 '14 at 18:35
1
If you want to use alt+right click, you might also have to changemouse-button-modifier
to <Alt>.
– gogators
Jul 25 '14 at 15:12
1
Thesegsettings
options still work on Ubuntu 18.04.
– Stéphane Gourichon
Aug 17 '18 at 23:10
Would like to add that they work in Ubuntu 18.10 also, and not only was this the original answer that helped me find it years ago when it changed, but after the new tweak tool in 18.10 not installing because of mirror problems (and other items), I was about to go mad. Thanks again.
– herdingofthecats
Nov 3 '18 at 13:31
add a comment |
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)
1
You could also change this same setting with a GUI, viadconf-editor
.
– Victor
Jan 27 '14 at 18:35
1
If you want to use alt+right click, you might also have to changemouse-button-modifier
to <Alt>.
– gogators
Jul 25 '14 at 15:12
1
Thesegsettings
options still work on Ubuntu 18.04.
– Stéphane Gourichon
Aug 17 '18 at 23:10
Would like to add that they work in Ubuntu 18.10 also, and not only was this the original answer that helped me find it years ago when it changed, but after the new tweak tool in 18.10 not installing because of mirror problems (and other items), I was about to go mad. Thanks again.
– herdingofthecats
Nov 3 '18 at 13:31
add a comment |
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)
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)
edited Oct 20 '14 at 15:05
bain
1545
1545
answered Apr 28 '12 at 18:51
drizzddrizzd
63663
63663
1
You could also change this same setting with a GUI, viadconf-editor
.
– Victor
Jan 27 '14 at 18:35
1
If you want to use alt+right click, you might also have to changemouse-button-modifier
to <Alt>.
– gogators
Jul 25 '14 at 15:12
1
Thesegsettings
options still work on Ubuntu 18.04.
– Stéphane Gourichon
Aug 17 '18 at 23:10
Would like to add that they work in Ubuntu 18.10 also, and not only was this the original answer that helped me find it years ago when it changed, but after the new tweak tool in 18.10 not installing because of mirror problems (and other items), I was about to go mad. Thanks again.
– herdingofthecats
Nov 3 '18 at 13:31
add a comment |
1
You could also change this same setting with a GUI, viadconf-editor
.
– Victor
Jan 27 '14 at 18:35
1
If you want to use alt+right click, you might also have to changemouse-button-modifier
to <Alt>.
– gogators
Jul 25 '14 at 15:12
1
Thesegsettings
options still work on Ubuntu 18.04.
– Stéphane Gourichon
Aug 17 '18 at 23:10
Would like to add that they work in Ubuntu 18.10 also, and not only was this the original answer that helped me find it years ago when it changed, but after the new tweak tool in 18.10 not installing because of mirror problems (and other items), I was about to go mad. Thanks again.
– herdingofthecats
Nov 3 '18 at 13:31
1
1
You could also change this same setting with a GUI, via
dconf-editor
.– Victor
Jan 27 '14 at 18:35
You could also change this same setting with a GUI, via
dconf-editor
.– Victor
Jan 27 '14 at 18:35
1
1
If you want to use alt+right click, you might also have to change
mouse-button-modifier
to <Alt>.– gogators
Jul 25 '14 at 15:12
If you want to use alt+right click, you might also have to change
mouse-button-modifier
to <Alt>.– gogators
Jul 25 '14 at 15:12
1
1
These
gsettings
options still work on Ubuntu 18.04.– Stéphane Gourichon
Aug 17 '18 at 23:10
These
gsettings
options still work on Ubuntu 18.04.– Stéphane Gourichon
Aug 17 '18 at 23:10
Would like to add that they work in Ubuntu 18.10 also, and not only was this the original answer that helped me find it years ago when it changed, but after the new tweak tool in 18.10 not installing because of mirror problems (and other items), I was about to go mad. Thanks again.
– herdingofthecats
Nov 3 '18 at 13:31
Would like to add that they work in Ubuntu 18.10 also, and not only was this the original answer that helped me find it years ago when it changed, but after the new tweak tool in 18.10 not installing because of mirror problems (and other items), I was about to go mad. Thanks again.
– herdingofthecats
Nov 3 '18 at 13:31
add a comment |
You can use gconf-editor
for this. Enable this setting:
/apps/metacity/general/resize_with_right_button
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
add a comment |
You can use gconf-editor
for this. Enable this setting:
/apps/metacity/general/resize_with_right_button
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
add a comment |
You can use gconf-editor
for this. Enable this setting:
/apps/metacity/general/resize_with_right_button
You can use gconf-editor
for this. Enable this setting:
/apps/metacity/general/resize_with_right_button
edited Jan 23 '12 at 6:32
Mat
39k8117125
39k8117125
answered Jan 23 '12 at 4:57
Felix YanFelix Yan
5651513
5651513
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
add a comment |
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
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
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
add a comment |
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).
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 8:55
add a comment |
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).
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 8:55
add a comment |
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).
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).
edited Jun 16 '15 at 9:30
RobinJ
9121716
9121716
answered Apr 8 '14 at 4:38
tylerltylerl
1,826816
1,826816
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 8:55
add a comment |
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 8:55
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
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 8:55
dconf, not gconf.
– RobinJ
Jun 16 '15 at 8:55
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
edited May 17 '15 at 20:59
Minix
2,20151940
2,20151940
answered May 17 '15 at 19:49
yrtimiDyrtimiD
212
212
add a comment |
add a comment |
If you install GNOME Tweaks, there's an option to "Resize with secondary click". Checking it will enable Super+RMB to resize windows.
add a comment |
If you install GNOME Tweaks, there's an option to "Resize with secondary click". Checking it will enable Super+RMB to resize windows.
add a comment |
If you install GNOME Tweaks, there's an option to "Resize with secondary click". Checking it will enable Super+RMB to resize windows.
If you install GNOME Tweaks, there's an option to "Resize with secondary click". Checking it will enable Super+RMB to resize windows.
answered Jan 2 at 2:15
Dan DascalescuDan Dascalescu
2,59921117
2,59921117
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f28514%2fhow-to-get-altright-mouse-to-resize-windows-again%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown