How can I change the alt+middle-mouse-button resize to alt+right-mouse-button?
I love how you can resize windows by pressing alt+middle-mouse-button and drag.
Though now I got a mouse which doesn't support pressing the middle mouse button..
How do I do to change the combination from alt+middle-mouse-button to alt+right-mouse-button?
(On Ubuntu 11.04 with unity)
compiz mouse resize
add a comment |
I love how you can resize windows by pressing alt+middle-mouse-button and drag.
Though now I got a mouse which doesn't support pressing the middle mouse button..
How do I do to change the combination from alt+middle-mouse-button to alt+right-mouse-button?
(On Ubuntu 11.04 with unity)
compiz mouse resize
add a comment |
I love how you can resize windows by pressing alt+middle-mouse-button and drag.
Though now I got a mouse which doesn't support pressing the middle mouse button..
How do I do to change the combination from alt+middle-mouse-button to alt+right-mouse-button?
(On Ubuntu 11.04 with unity)
compiz mouse resize
I love how you can resize windows by pressing alt+middle-mouse-button and drag.
Though now I got a mouse which doesn't support pressing the middle mouse button..
How do I do to change the combination from alt+middle-mouse-button to alt+right-mouse-button?
(On Ubuntu 11.04 with unity)
compiz mouse resize
compiz mouse resize
edited Aug 2 '11 at 18:37
Uri Herrera
10.4k1574130
10.4k1574130
asked Aug 2 '11 at 18:30
Tomas FTomas F
17528
17528
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
You need to get and install ccsm (Compiz Config Settings Manager).
sudo apt-get install compizconfig-settings-manager
Go to Window Management --> Resize window .
Note: Changing Button2 to Button3 or 1 may give you a conflict message. If so, choose "Disable Window Menu". However, Alt+F8 Will give you the same result.
This is just what I was looking for - thanks a lot!
– Tal Galili
Nov 17 '11 at 20:09
add a comment |
Follow these steps:
To open
dconf-editor
, Hit Alt+F2, typedconf-editor
and hit Enter.
In dconf-editor goto:
org
➤gnome
➤desktop
➤wm
➤preferences
and enable ☑resize-with-right-button
.
It works again the way I'm used to :). Thank you very much!
– Jonathan Gruber
Apr 28 '13 at 7:50
much better than having to install yet another settings program.
– JasonN
Apr 20 '17 at 21:30
add a comment |
You can do this using compizconfig-settings-manager
.
If you dont already have this installed, use Software Center and search for this package.
In dash type ccsm
and then in the Window Management section click on "Resize Window".
At the bottom of this window is "Initiate Window Resize" - you'll notice that Button2 is the default. You can change this to whichever button you want.
add a comment |
The following script extract will do just that (and works on both new Unity and old Gnome):
#!/bin/bash
gconftool-2 -s -t bool /apps/metacity/general/resize_with_right_button true
gsettings set org.gnome.desktop.wm.preferences resize-with-right-button true
I have a script that I run whenever I install a fresh Ubuntu and the above is part of it; makes it nice and easy to restore my default settings :)
This is nice. Could you share the script with the community? Thanks!
– qed
Sep 24 '14 at 14:48
@qed the script is literally a few lines of things that look similar to the above, and almost all of them are my personal preferences; I'm not sure how useful anyone else would find it!
– Seb
Sep 25 '14 at 15:56
If no privacy is involved, I would be glad to see it, and I am sure I can learn something from it! :-)
– qed
Sep 25 '14 at 16:09
Especially because I am also trying to make up such a script myself.
– qed
Sep 25 '14 at 16:10
add a comment |
In GNOME/Ubuntu 18, if you install GNOME Tweaks, there's a setting for that: "Resize with secondary click". Checking it will enable Super+RMB to resize windows, not Alt though, but hopefully my suggestion will be taken into account.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2faskubuntu.com%2fquestions%2f55532%2fhow-can-i-change-the-altmiddle-mouse-button-resize-to-altright-mouse-button%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
You need to get and install ccsm (Compiz Config Settings Manager).
sudo apt-get install compizconfig-settings-manager
Go to Window Management --> Resize window .
Note: Changing Button2 to Button3 or 1 may give you a conflict message. If so, choose "Disable Window Menu". However, Alt+F8 Will give you the same result.
This is just what I was looking for - thanks a lot!
– Tal Galili
Nov 17 '11 at 20:09
add a comment |
You need to get and install ccsm (Compiz Config Settings Manager).
sudo apt-get install compizconfig-settings-manager
Go to Window Management --> Resize window .
Note: Changing Button2 to Button3 or 1 may give you a conflict message. If so, choose "Disable Window Menu". However, Alt+F8 Will give you the same result.
This is just what I was looking for - thanks a lot!
– Tal Galili
Nov 17 '11 at 20:09
add a comment |
You need to get and install ccsm (Compiz Config Settings Manager).
sudo apt-get install compizconfig-settings-manager
Go to Window Management --> Resize window .
Note: Changing Button2 to Button3 or 1 may give you a conflict message. If so, choose "Disable Window Menu". However, Alt+F8 Will give you the same result.
You need to get and install ccsm (Compiz Config Settings Manager).
sudo apt-get install compizconfig-settings-manager
Go to Window Management --> Resize window .
Note: Changing Button2 to Button3 or 1 may give you a conflict message. If so, choose "Disable Window Menu". However, Alt+F8 Will give you the same result.
edited Jun 8 '16 at 17:24
Dan Dascalescu
1,07421636
1,07421636
answered Aug 2 '11 at 18:40
BinarylifeBinarylife
12.7k95163
12.7k95163
This is just what I was looking for - thanks a lot!
– Tal Galili
Nov 17 '11 at 20:09
add a comment |
This is just what I was looking for - thanks a lot!
– Tal Galili
Nov 17 '11 at 20:09
This is just what I was looking for - thanks a lot!
– Tal Galili
Nov 17 '11 at 20:09
This is just what I was looking for - thanks a lot!
– Tal Galili
Nov 17 '11 at 20:09
add a comment |
Follow these steps:
To open
dconf-editor
, Hit Alt+F2, typedconf-editor
and hit Enter.
In dconf-editor goto:
org
➤gnome
➤desktop
➤wm
➤preferences
and enable ☑resize-with-right-button
.
It works again the way I'm used to :). Thank you very much!
– Jonathan Gruber
Apr 28 '13 at 7:50
much better than having to install yet another settings program.
– JasonN
Apr 20 '17 at 21:30
add a comment |
Follow these steps:
To open
dconf-editor
, Hit Alt+F2, typedconf-editor
and hit Enter.
In dconf-editor goto:
org
➤gnome
➤desktop
➤wm
➤preferences
and enable ☑resize-with-right-button
.
It works again the way I'm used to :). Thank you very much!
– Jonathan Gruber
Apr 28 '13 at 7:50
much better than having to install yet another settings program.
– JasonN
Apr 20 '17 at 21:30
add a comment |
Follow these steps:
To open
dconf-editor
, Hit Alt+F2, typedconf-editor
and hit Enter.
In dconf-editor goto:
org
➤gnome
➤desktop
➤wm
➤preferences
and enable ☑resize-with-right-button
.
Follow these steps:
To open
dconf-editor
, Hit Alt+F2, typedconf-editor
and hit Enter.
In dconf-editor goto:
org
➤gnome
➤desktop
➤wm
➤preferences
and enable ☑resize-with-right-button
.
answered Apr 27 '13 at 18:57
Basharat SialviBasharat Sialvi
19.5k85276
19.5k85276
It works again the way I'm used to :). Thank you very much!
– Jonathan Gruber
Apr 28 '13 at 7:50
much better than having to install yet another settings program.
– JasonN
Apr 20 '17 at 21:30
add a comment |
It works again the way I'm used to :). Thank you very much!
– Jonathan Gruber
Apr 28 '13 at 7:50
much better than having to install yet another settings program.
– JasonN
Apr 20 '17 at 21:30
It works again the way I'm used to :). Thank you very much!
– Jonathan Gruber
Apr 28 '13 at 7:50
It works again the way I'm used to :). Thank you very much!
– Jonathan Gruber
Apr 28 '13 at 7:50
much better than having to install yet another settings program.
– JasonN
Apr 20 '17 at 21:30
much better than having to install yet another settings program.
– JasonN
Apr 20 '17 at 21:30
add a comment |
You can do this using compizconfig-settings-manager
.
If you dont already have this installed, use Software Center and search for this package.
In dash type ccsm
and then in the Window Management section click on "Resize Window".
At the bottom of this window is "Initiate Window Resize" - you'll notice that Button2 is the default. You can change this to whichever button you want.
add a comment |
You can do this using compizconfig-settings-manager
.
If you dont already have this installed, use Software Center and search for this package.
In dash type ccsm
and then in the Window Management section click on "Resize Window".
At the bottom of this window is "Initiate Window Resize" - you'll notice that Button2 is the default. You can change this to whichever button you want.
add a comment |
You can do this using compizconfig-settings-manager
.
If you dont already have this installed, use Software Center and search for this package.
In dash type ccsm
and then in the Window Management section click on "Resize Window".
At the bottom of this window is "Initiate Window Resize" - you'll notice that Button2 is the default. You can change this to whichever button you want.
You can do this using compizconfig-settings-manager
.
If you dont already have this installed, use Software Center and search for this package.
In dash type ccsm
and then in the Window Management section click on "Resize Window".
At the bottom of this window is "Initiate Window Resize" - you'll notice that Button2 is the default. You can change this to whichever button you want.
answered Aug 2 '11 at 18:39
fossfreedom♦fossfreedom
149k37327372
149k37327372
add a comment |
add a comment |
The following script extract will do just that (and works on both new Unity and old Gnome):
#!/bin/bash
gconftool-2 -s -t bool /apps/metacity/general/resize_with_right_button true
gsettings set org.gnome.desktop.wm.preferences resize-with-right-button true
I have a script that I run whenever I install a fresh Ubuntu and the above is part of it; makes it nice and easy to restore my default settings :)
This is nice. Could you share the script with the community? Thanks!
– qed
Sep 24 '14 at 14:48
@qed the script is literally a few lines of things that look similar to the above, and almost all of them are my personal preferences; I'm not sure how useful anyone else would find it!
– Seb
Sep 25 '14 at 15:56
If no privacy is involved, I would be glad to see it, and I am sure I can learn something from it! :-)
– qed
Sep 25 '14 at 16:09
Especially because I am also trying to make up such a script myself.
– qed
Sep 25 '14 at 16:10
add a comment |
The following script extract will do just that (and works on both new Unity and old Gnome):
#!/bin/bash
gconftool-2 -s -t bool /apps/metacity/general/resize_with_right_button true
gsettings set org.gnome.desktop.wm.preferences resize-with-right-button true
I have a script that I run whenever I install a fresh Ubuntu and the above is part of it; makes it nice and easy to restore my default settings :)
This is nice. Could you share the script with the community? Thanks!
– qed
Sep 24 '14 at 14:48
@qed the script is literally a few lines of things that look similar to the above, and almost all of them are my personal preferences; I'm not sure how useful anyone else would find it!
– Seb
Sep 25 '14 at 15:56
If no privacy is involved, I would be glad to see it, and I am sure I can learn something from it! :-)
– qed
Sep 25 '14 at 16:09
Especially because I am also trying to make up such a script myself.
– qed
Sep 25 '14 at 16:10
add a comment |
The following script extract will do just that (and works on both new Unity and old Gnome):
#!/bin/bash
gconftool-2 -s -t bool /apps/metacity/general/resize_with_right_button true
gsettings set org.gnome.desktop.wm.preferences resize-with-right-button true
I have a script that I run whenever I install a fresh Ubuntu and the above is part of it; makes it nice and easy to restore my default settings :)
The following script extract will do just that (and works on both new Unity and old Gnome):
#!/bin/bash
gconftool-2 -s -t bool /apps/metacity/general/resize_with_right_button true
gsettings set org.gnome.desktop.wm.preferences resize-with-right-button true
I have a script that I run whenever I install a fresh Ubuntu and the above is part of it; makes it nice and easy to restore my default settings :)
answered May 16 '13 at 9:10
SebSeb
27326
27326
This is nice. Could you share the script with the community? Thanks!
– qed
Sep 24 '14 at 14:48
@qed the script is literally a few lines of things that look similar to the above, and almost all of them are my personal preferences; I'm not sure how useful anyone else would find it!
– Seb
Sep 25 '14 at 15:56
If no privacy is involved, I would be glad to see it, and I am sure I can learn something from it! :-)
– qed
Sep 25 '14 at 16:09
Especially because I am also trying to make up such a script myself.
– qed
Sep 25 '14 at 16:10
add a comment |
This is nice. Could you share the script with the community? Thanks!
– qed
Sep 24 '14 at 14:48
@qed the script is literally a few lines of things that look similar to the above, and almost all of them are my personal preferences; I'm not sure how useful anyone else would find it!
– Seb
Sep 25 '14 at 15:56
If no privacy is involved, I would be glad to see it, and I am sure I can learn something from it! :-)
– qed
Sep 25 '14 at 16:09
Especially because I am also trying to make up such a script myself.
– qed
Sep 25 '14 at 16:10
This is nice. Could you share the script with the community? Thanks!
– qed
Sep 24 '14 at 14:48
This is nice. Could you share the script with the community? Thanks!
– qed
Sep 24 '14 at 14:48
@qed the script is literally a few lines of things that look similar to the above, and almost all of them are my personal preferences; I'm not sure how useful anyone else would find it!
– Seb
Sep 25 '14 at 15:56
@qed the script is literally a few lines of things that look similar to the above, and almost all of them are my personal preferences; I'm not sure how useful anyone else would find it!
– Seb
Sep 25 '14 at 15:56
If no privacy is involved, I would be glad to see it, and I am sure I can learn something from it! :-)
– qed
Sep 25 '14 at 16:09
If no privacy is involved, I would be glad to see it, and I am sure I can learn something from it! :-)
– qed
Sep 25 '14 at 16:09
Especially because I am also trying to make up such a script myself.
– qed
Sep 25 '14 at 16:10
Especially because I am also trying to make up such a script myself.
– qed
Sep 25 '14 at 16:10
add a comment |
In GNOME/Ubuntu 18, if you install GNOME Tweaks, there's a setting for that: "Resize with secondary click". Checking it will enable Super+RMB to resize windows, not Alt though, but hopefully my suggestion will be taken into account.
add a comment |
In GNOME/Ubuntu 18, if you install GNOME Tweaks, there's a setting for that: "Resize with secondary click". Checking it will enable Super+RMB to resize windows, not Alt though, but hopefully my suggestion will be taken into account.
add a comment |
In GNOME/Ubuntu 18, if you install GNOME Tweaks, there's a setting for that: "Resize with secondary click". Checking it will enable Super+RMB to resize windows, not Alt though, but hopefully my suggestion will be taken into account.
In GNOME/Ubuntu 18, if you install GNOME Tweaks, there's a setting for that: "Resize with secondary click". Checking it will enable Super+RMB to resize windows, not Alt though, but hopefully my suggestion will be taken into account.
answered Jan 2 at 2:17
Dan DascalescuDan Dascalescu
1,07421636
1,07421636
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f55532%2fhow-can-i-change-the-altmiddle-mouse-button-resize-to-altright-mouse-button%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