Chrome/Chromium middle mouse button for scroll Linux, Mac
Clicking the middle button does't allow me scroll the page. Is there any way to fix this behavior?
Information:
- Ubuntu 10.10
- Chromium 9.0.597.94
- Logitech MX518
Update: also Chrome, and the other Chromium based ones.
google-chrome chromium
add a comment |
Clicking the middle button does't allow me scroll the page. Is there any way to fix this behavior?
Information:
- Ubuntu 10.10
- Chromium 9.0.597.94
- Logitech MX518
Update: also Chrome, and the other Chromium based ones.
google-chrome chromium
add a comment |
Clicking the middle button does't allow me scroll the page. Is there any way to fix this behavior?
Information:
- Ubuntu 10.10
- Chromium 9.0.597.94
- Logitech MX518
Update: also Chrome, and the other Chromium based ones.
google-chrome chromium
Clicking the middle button does't allow me scroll the page. Is there any way to fix this behavior?
Information:
- Ubuntu 10.10
- Chromium 9.0.597.94
- Logitech MX518
Update: also Chrome, and the other Chromium based ones.
google-chrome chromium
google-chrome chromium
edited Jun 8 '14 at 2:55
Braiam
52.3k20137222
52.3k20137222
asked Feb 26 '11 at 9:13
s7anleys7anley
213135
213135
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
In Linux based/Mac systems, Google Chrome / Chromium hasn't got this feature.
You have to get AutoScroll extension. Here it is: AutoScroll
2
Great tip - worked for me.
– Mark Rooney
Feb 26 '11 at 10:14
11
It's a real shame they don't have this in by default.
– Jeggy
Aug 14 '12 at 21:30
How do you control the speed?
– Raffi Khatchadourian
Mar 30 '15 at 14:27
Isn't it in settings?
– antivirtel
Mar 30 '15 at 14:29
Good answer, but why are you asking me to click on an image, and not just provide a regular link?
– mwfearnley
May 21 '16 at 12:47
|
show 6 more comments
This will work with all your applications without the need of installing anything.
Get your input deviceID
xinput list
In my case with a Logitech M315/M235 was 11.
To list available properties use xinput list-props <deviceID>
. If you are using libinput (the future/present) almost all properties will start with libinput (also check libinput list-devices
).
With libinput
Since 17.04 Ubuntu uses libinput, so to set mouse properties:
xinput set-prop 11 "libinput Scroll Method Enabled" 0, 0, 1 # This is button
xinput set-prop 11 "libinput Button Scrolling Button" 2 # This is middle mouse. Already 2 by default
Description from man libinput
:
libinput Scroll Method Enabled 3 boolean values (8 bit, 0 or 1), in order "two-finger", "edge", "button". Indicates which scroll method is currently enabled on this device.
libinput Button Scrolling Button 1 32-bit value. Sets the button number to use for button scrolling. This setting is independent of the scroll method, to enable button scrolling the method must be set to button-scrolling and a valid button must be set.
With evdev
xinput --set-prop 11 'Evdev Wheel Emulation' 1
xinput --set-prop 11 'Evdev Wheel Emulation Button' 2
xinput --set-prop 11 'Evdev Wheel Emulation Axes' 6 7 4 5
You can add this to a bash script and run it at login.- Like wheel, with the same movement while pressing Ctrl will zoom in/out page. Ctrl+0 to reset.
- Ubuntu 18.04 use X by default. With Wayland may be another story.
- Maybe better than Firefox Autoscrolling, more easy to control.
Doesn't work for me on Ubuntu 16.04; running the first of the proposedevdev
commands gives me "property 'Evdev Wheel Emulation' doesn't exist, you need to specify its type and format"
– Mark Amery
Feb 3 '18 at 17:36
@markAmery I'm using Ubuntu 16.04 too. Probably you are using libinput. List device properties. Don't forget upvote if it help you.
– Pablo Bianchi
Feb 3 '18 at 18:17
2
This is the best answer and should be accepted.
– jtolds
Mar 10 '18 at 19:00
evdev
worked like a charm. Just to note my mouse device was numbered10
not11
.
– piepi
Mar 12 '18 at 11:45
@piepi I edit my answer to be more clear, 11 was just in my case. Don't forget to upvote if you found it useful.
– Pablo Bianchi
Mar 12 '18 at 18:09
|
show 4 more comments
I recommend another couple of addons, that allows "Scroll a page as if a scrollbar is under your mouse." I found that give us more control over the scroll move.
- For Chrome
- for Firefox
With both addons you just click and hold secondary button pressed to scroll pages moving the mouse up and down and even horizontally.
Extensions named as "Scrollbar Anywhere" is working better then "AutoScroll", because it doesn't blocking mouseDown js-event on website'spages if it needn't.
– faiwer
Jan 20 '17 at 8:58
add a comment |
I have Ubuntu 14.04 and mouse wheel stopped working on one of my Chrome instances. I followed the tip here and it works great. When I go into the page about::flags
, the "Smooth Scrolling" option was enabled. I disabled it and it works.
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%2f28150%2fchrome-chromium-middle-mouse-button-for-scroll-linux-mac%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
In Linux based/Mac systems, Google Chrome / Chromium hasn't got this feature.
You have to get AutoScroll extension. Here it is: AutoScroll
2
Great tip - worked for me.
– Mark Rooney
Feb 26 '11 at 10:14
11
It's a real shame they don't have this in by default.
– Jeggy
Aug 14 '12 at 21:30
How do you control the speed?
– Raffi Khatchadourian
Mar 30 '15 at 14:27
Isn't it in settings?
– antivirtel
Mar 30 '15 at 14:29
Good answer, but why are you asking me to click on an image, and not just provide a regular link?
– mwfearnley
May 21 '16 at 12:47
|
show 6 more comments
In Linux based/Mac systems, Google Chrome / Chromium hasn't got this feature.
You have to get AutoScroll extension. Here it is: AutoScroll
2
Great tip - worked for me.
– Mark Rooney
Feb 26 '11 at 10:14
11
It's a real shame they don't have this in by default.
– Jeggy
Aug 14 '12 at 21:30
How do you control the speed?
– Raffi Khatchadourian
Mar 30 '15 at 14:27
Isn't it in settings?
– antivirtel
Mar 30 '15 at 14:29
Good answer, but why are you asking me to click on an image, and not just provide a regular link?
– mwfearnley
May 21 '16 at 12:47
|
show 6 more comments
In Linux based/Mac systems, Google Chrome / Chromium hasn't got this feature.
You have to get AutoScroll extension. Here it is: AutoScroll
In Linux based/Mac systems, Google Chrome / Chromium hasn't got this feature.
You have to get AutoScroll extension. Here it is: AutoScroll
edited Apr 29 '18 at 22:00
thiagowfx
57549
57549
answered Feb 26 '11 at 9:56
antivirtelantivirtel
2,73742646
2,73742646
2
Great tip - worked for me.
– Mark Rooney
Feb 26 '11 at 10:14
11
It's a real shame they don't have this in by default.
– Jeggy
Aug 14 '12 at 21:30
How do you control the speed?
– Raffi Khatchadourian
Mar 30 '15 at 14:27
Isn't it in settings?
– antivirtel
Mar 30 '15 at 14:29
Good answer, but why are you asking me to click on an image, and not just provide a regular link?
– mwfearnley
May 21 '16 at 12:47
|
show 6 more comments
2
Great tip - worked for me.
– Mark Rooney
Feb 26 '11 at 10:14
11
It's a real shame they don't have this in by default.
– Jeggy
Aug 14 '12 at 21:30
How do you control the speed?
– Raffi Khatchadourian
Mar 30 '15 at 14:27
Isn't it in settings?
– antivirtel
Mar 30 '15 at 14:29
Good answer, but why are you asking me to click on an image, and not just provide a regular link?
– mwfearnley
May 21 '16 at 12:47
2
2
Great tip - worked for me.
– Mark Rooney
Feb 26 '11 at 10:14
Great tip - worked for me.
– Mark Rooney
Feb 26 '11 at 10:14
11
11
It's a real shame they don't have this in by default.
– Jeggy
Aug 14 '12 at 21:30
It's a real shame they don't have this in by default.
– Jeggy
Aug 14 '12 at 21:30
How do you control the speed?
– Raffi Khatchadourian
Mar 30 '15 at 14:27
How do you control the speed?
– Raffi Khatchadourian
Mar 30 '15 at 14:27
Isn't it in settings?
– antivirtel
Mar 30 '15 at 14:29
Isn't it in settings?
– antivirtel
Mar 30 '15 at 14:29
Good answer, but why are you asking me to click on an image, and not just provide a regular link?
– mwfearnley
May 21 '16 at 12:47
Good answer, but why are you asking me to click on an image, and not just provide a regular link?
– mwfearnley
May 21 '16 at 12:47
|
show 6 more comments
This will work with all your applications without the need of installing anything.
Get your input deviceID
xinput list
In my case with a Logitech M315/M235 was 11.
To list available properties use xinput list-props <deviceID>
. If you are using libinput (the future/present) almost all properties will start with libinput (also check libinput list-devices
).
With libinput
Since 17.04 Ubuntu uses libinput, so to set mouse properties:
xinput set-prop 11 "libinput Scroll Method Enabled" 0, 0, 1 # This is button
xinput set-prop 11 "libinput Button Scrolling Button" 2 # This is middle mouse. Already 2 by default
Description from man libinput
:
libinput Scroll Method Enabled 3 boolean values (8 bit, 0 or 1), in order "two-finger", "edge", "button". Indicates which scroll method is currently enabled on this device.
libinput Button Scrolling Button 1 32-bit value. Sets the button number to use for button scrolling. This setting is independent of the scroll method, to enable button scrolling the method must be set to button-scrolling and a valid button must be set.
With evdev
xinput --set-prop 11 'Evdev Wheel Emulation' 1
xinput --set-prop 11 'Evdev Wheel Emulation Button' 2
xinput --set-prop 11 'Evdev Wheel Emulation Axes' 6 7 4 5
You can add this to a bash script and run it at login.- Like wheel, with the same movement while pressing Ctrl will zoom in/out page. Ctrl+0 to reset.
- Ubuntu 18.04 use X by default. With Wayland may be another story.
- Maybe better than Firefox Autoscrolling, more easy to control.
Doesn't work for me on Ubuntu 16.04; running the first of the proposedevdev
commands gives me "property 'Evdev Wheel Emulation' doesn't exist, you need to specify its type and format"
– Mark Amery
Feb 3 '18 at 17:36
@markAmery I'm using Ubuntu 16.04 too. Probably you are using libinput. List device properties. Don't forget upvote if it help you.
– Pablo Bianchi
Feb 3 '18 at 18:17
2
This is the best answer and should be accepted.
– jtolds
Mar 10 '18 at 19:00
evdev
worked like a charm. Just to note my mouse device was numbered10
not11
.
– piepi
Mar 12 '18 at 11:45
@piepi I edit my answer to be more clear, 11 was just in my case. Don't forget to upvote if you found it useful.
– Pablo Bianchi
Mar 12 '18 at 18:09
|
show 4 more comments
This will work with all your applications without the need of installing anything.
Get your input deviceID
xinput list
In my case with a Logitech M315/M235 was 11.
To list available properties use xinput list-props <deviceID>
. If you are using libinput (the future/present) almost all properties will start with libinput (also check libinput list-devices
).
With libinput
Since 17.04 Ubuntu uses libinput, so to set mouse properties:
xinput set-prop 11 "libinput Scroll Method Enabled" 0, 0, 1 # This is button
xinput set-prop 11 "libinput Button Scrolling Button" 2 # This is middle mouse. Already 2 by default
Description from man libinput
:
libinput Scroll Method Enabled 3 boolean values (8 bit, 0 or 1), in order "two-finger", "edge", "button". Indicates which scroll method is currently enabled on this device.
libinput Button Scrolling Button 1 32-bit value. Sets the button number to use for button scrolling. This setting is independent of the scroll method, to enable button scrolling the method must be set to button-scrolling and a valid button must be set.
With evdev
xinput --set-prop 11 'Evdev Wheel Emulation' 1
xinput --set-prop 11 'Evdev Wheel Emulation Button' 2
xinput --set-prop 11 'Evdev Wheel Emulation Axes' 6 7 4 5
You can add this to a bash script and run it at login.- Like wheel, with the same movement while pressing Ctrl will zoom in/out page. Ctrl+0 to reset.
- Ubuntu 18.04 use X by default. With Wayland may be another story.
- Maybe better than Firefox Autoscrolling, more easy to control.
Doesn't work for me on Ubuntu 16.04; running the first of the proposedevdev
commands gives me "property 'Evdev Wheel Emulation' doesn't exist, you need to specify its type and format"
– Mark Amery
Feb 3 '18 at 17:36
@markAmery I'm using Ubuntu 16.04 too. Probably you are using libinput. List device properties. Don't forget upvote if it help you.
– Pablo Bianchi
Feb 3 '18 at 18:17
2
This is the best answer and should be accepted.
– jtolds
Mar 10 '18 at 19:00
evdev
worked like a charm. Just to note my mouse device was numbered10
not11
.
– piepi
Mar 12 '18 at 11:45
@piepi I edit my answer to be more clear, 11 was just in my case. Don't forget to upvote if you found it useful.
– Pablo Bianchi
Mar 12 '18 at 18:09
|
show 4 more comments
This will work with all your applications without the need of installing anything.
Get your input deviceID
xinput list
In my case with a Logitech M315/M235 was 11.
To list available properties use xinput list-props <deviceID>
. If you are using libinput (the future/present) almost all properties will start with libinput (also check libinput list-devices
).
With libinput
Since 17.04 Ubuntu uses libinput, so to set mouse properties:
xinput set-prop 11 "libinput Scroll Method Enabled" 0, 0, 1 # This is button
xinput set-prop 11 "libinput Button Scrolling Button" 2 # This is middle mouse. Already 2 by default
Description from man libinput
:
libinput Scroll Method Enabled 3 boolean values (8 bit, 0 or 1), in order "two-finger", "edge", "button". Indicates which scroll method is currently enabled on this device.
libinput Button Scrolling Button 1 32-bit value. Sets the button number to use for button scrolling. This setting is independent of the scroll method, to enable button scrolling the method must be set to button-scrolling and a valid button must be set.
With evdev
xinput --set-prop 11 'Evdev Wheel Emulation' 1
xinput --set-prop 11 'Evdev Wheel Emulation Button' 2
xinput --set-prop 11 'Evdev Wheel Emulation Axes' 6 7 4 5
You can add this to a bash script and run it at login.- Like wheel, with the same movement while pressing Ctrl will zoom in/out page. Ctrl+0 to reset.
- Ubuntu 18.04 use X by default. With Wayland may be another story.
- Maybe better than Firefox Autoscrolling, more easy to control.
This will work with all your applications without the need of installing anything.
Get your input deviceID
xinput list
In my case with a Logitech M315/M235 was 11.
To list available properties use xinput list-props <deviceID>
. If you are using libinput (the future/present) almost all properties will start with libinput (also check libinput list-devices
).
With libinput
Since 17.04 Ubuntu uses libinput, so to set mouse properties:
xinput set-prop 11 "libinput Scroll Method Enabled" 0, 0, 1 # This is button
xinput set-prop 11 "libinput Button Scrolling Button" 2 # This is middle mouse. Already 2 by default
Description from man libinput
:
libinput Scroll Method Enabled 3 boolean values (8 bit, 0 or 1), in order "two-finger", "edge", "button". Indicates which scroll method is currently enabled on this device.
libinput Button Scrolling Button 1 32-bit value. Sets the button number to use for button scrolling. This setting is independent of the scroll method, to enable button scrolling the method must be set to button-scrolling and a valid button must be set.
With evdev
xinput --set-prop 11 'Evdev Wheel Emulation' 1
xinput --set-prop 11 'Evdev Wheel Emulation Button' 2
xinput --set-prop 11 'Evdev Wheel Emulation Axes' 6 7 4 5
You can add this to a bash script and run it at login.- Like wheel, with the same movement while pressing Ctrl will zoom in/out page. Ctrl+0 to reset.
- Ubuntu 18.04 use X by default. With Wayland may be another story.
- Maybe better than Firefox Autoscrolling, more easy to control.
edited Jan 27 at 15:37
answered Jan 5 '17 at 2:17
Pablo BianchiPablo Bianchi
2,89521535
2,89521535
Doesn't work for me on Ubuntu 16.04; running the first of the proposedevdev
commands gives me "property 'Evdev Wheel Emulation' doesn't exist, you need to specify its type and format"
– Mark Amery
Feb 3 '18 at 17:36
@markAmery I'm using Ubuntu 16.04 too. Probably you are using libinput. List device properties. Don't forget upvote if it help you.
– Pablo Bianchi
Feb 3 '18 at 18:17
2
This is the best answer and should be accepted.
– jtolds
Mar 10 '18 at 19:00
evdev
worked like a charm. Just to note my mouse device was numbered10
not11
.
– piepi
Mar 12 '18 at 11:45
@piepi I edit my answer to be more clear, 11 was just in my case. Don't forget to upvote if you found it useful.
– Pablo Bianchi
Mar 12 '18 at 18:09
|
show 4 more comments
Doesn't work for me on Ubuntu 16.04; running the first of the proposedevdev
commands gives me "property 'Evdev Wheel Emulation' doesn't exist, you need to specify its type and format"
– Mark Amery
Feb 3 '18 at 17:36
@markAmery I'm using Ubuntu 16.04 too. Probably you are using libinput. List device properties. Don't forget upvote if it help you.
– Pablo Bianchi
Feb 3 '18 at 18:17
2
This is the best answer and should be accepted.
– jtolds
Mar 10 '18 at 19:00
evdev
worked like a charm. Just to note my mouse device was numbered10
not11
.
– piepi
Mar 12 '18 at 11:45
@piepi I edit my answer to be more clear, 11 was just in my case. Don't forget to upvote if you found it useful.
– Pablo Bianchi
Mar 12 '18 at 18:09
Doesn't work for me on Ubuntu 16.04; running the first of the proposed
evdev
commands gives me "property 'Evdev Wheel Emulation' doesn't exist, you need to specify its type and format"– Mark Amery
Feb 3 '18 at 17:36
Doesn't work for me on Ubuntu 16.04; running the first of the proposed
evdev
commands gives me "property 'Evdev Wheel Emulation' doesn't exist, you need to specify its type and format"– Mark Amery
Feb 3 '18 at 17:36
@markAmery I'm using Ubuntu 16.04 too. Probably you are using libinput. List device properties. Don't forget upvote if it help you.
– Pablo Bianchi
Feb 3 '18 at 18:17
@markAmery I'm using Ubuntu 16.04 too. Probably you are using libinput. List device properties. Don't forget upvote if it help you.
– Pablo Bianchi
Feb 3 '18 at 18:17
2
2
This is the best answer and should be accepted.
– jtolds
Mar 10 '18 at 19:00
This is the best answer and should be accepted.
– jtolds
Mar 10 '18 at 19:00
evdev
worked like a charm. Just to note my mouse device was numbered 10
not 11
.– piepi
Mar 12 '18 at 11:45
evdev
worked like a charm. Just to note my mouse device was numbered 10
not 11
.– piepi
Mar 12 '18 at 11:45
@piepi I edit my answer to be more clear, 11 was just in my case. Don't forget to upvote if you found it useful.
– Pablo Bianchi
Mar 12 '18 at 18:09
@piepi I edit my answer to be more clear, 11 was just in my case. Don't forget to upvote if you found it useful.
– Pablo Bianchi
Mar 12 '18 at 18:09
|
show 4 more comments
I recommend another couple of addons, that allows "Scroll a page as if a scrollbar is under your mouse." I found that give us more control over the scroll move.
- For Chrome
- for Firefox
With both addons you just click and hold secondary button pressed to scroll pages moving the mouse up and down and even horizontally.
Extensions named as "Scrollbar Anywhere" is working better then "AutoScroll", because it doesn't blocking mouseDown js-event on website'spages if it needn't.
– faiwer
Jan 20 '17 at 8:58
add a comment |
I recommend another couple of addons, that allows "Scroll a page as if a scrollbar is under your mouse." I found that give us more control over the scroll move.
- For Chrome
- for Firefox
With both addons you just click and hold secondary button pressed to scroll pages moving the mouse up and down and even horizontally.
Extensions named as "Scrollbar Anywhere" is working better then "AutoScroll", because it doesn't blocking mouseDown js-event on website'spages if it needn't.
– faiwer
Jan 20 '17 at 8:58
add a comment |
I recommend another couple of addons, that allows "Scroll a page as if a scrollbar is under your mouse." I found that give us more control over the scroll move.
- For Chrome
- for Firefox
With both addons you just click and hold secondary button pressed to scroll pages moving the mouse up and down and even horizontally.
I recommend another couple of addons, that allows "Scroll a page as if a scrollbar is under your mouse." I found that give us more control over the scroll move.
- For Chrome
- for Firefox
With both addons you just click and hold secondary button pressed to scroll pages moving the mouse up and down and even horizontally.
edited Jan 22 at 2:02
Pablo Bianchi
2,89521535
2,89521535
answered Jan 31 '14 at 11:40
Igor ParraIgor Parra
1945
1945
Extensions named as "Scrollbar Anywhere" is working better then "AutoScroll", because it doesn't blocking mouseDown js-event on website'spages if it needn't.
– faiwer
Jan 20 '17 at 8:58
add a comment |
Extensions named as "Scrollbar Anywhere" is working better then "AutoScroll", because it doesn't blocking mouseDown js-event on website'spages if it needn't.
– faiwer
Jan 20 '17 at 8:58
Extensions named as "Scrollbar Anywhere" is working better then "AutoScroll", because it doesn't blocking mouseDown js-event on website'spages if it needn't.
– faiwer
Jan 20 '17 at 8:58
Extensions named as "Scrollbar Anywhere" is working better then "AutoScroll", because it doesn't blocking mouseDown js-event on website'spages if it needn't.
– faiwer
Jan 20 '17 at 8:58
add a comment |
I have Ubuntu 14.04 and mouse wheel stopped working on one of my Chrome instances. I followed the tip here and it works great. When I go into the page about::flags
, the "Smooth Scrolling" option was enabled. I disabled it and it works.
add a comment |
I have Ubuntu 14.04 and mouse wheel stopped working on one of my Chrome instances. I followed the tip here and it works great. When I go into the page about::flags
, the "Smooth Scrolling" option was enabled. I disabled it and it works.
add a comment |
I have Ubuntu 14.04 and mouse wheel stopped working on one of my Chrome instances. I followed the tip here and it works great. When I go into the page about::flags
, the "Smooth Scrolling" option was enabled. I disabled it and it works.
I have Ubuntu 14.04 and mouse wheel stopped working on one of my Chrome instances. I followed the tip here and it works great. When I go into the page about::flags
, the "Smooth Scrolling" option was enabled. I disabled it and it works.
edited Sep 17 '16 at 16:40
David Foerster
28.4k1366111
28.4k1366111
answered May 19 '16 at 18:34
packetiepacketie
1207
1207
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%2f28150%2fchrome-chromium-middle-mouse-button-for-scroll-linux-mac%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