Xubuntu and mouse scrolling direction
I'm using xubuntu (not unity) and mouse scrolling works totally wrong. I see first comments on this dated 2011. Now it is 2017 and everything is the same mess.
So. I'm using xubuntu. And I like natural mouse scrolling direction - the same way it works in MacOS X. If you want to move your page up you scroll two fingers up. If scroll down then down.
I have touchpad. By default I have reverse scrolling direction. Scrolling fingers up scroll page down, left to right. If I turn on reverse scrolling for the touchpad then I get natural scrolling direction for up/down. But left right direction is still unnatural. And separate issue is google chrome (not chromium, I didn't check it). My Chrome version is 58.0.3029.110 (64-bit). And it totally ignores system settings. It has always unnatural scrolling direction for up/down.
xubuntu google-chrome scrolling
add a comment |
I'm using xubuntu (not unity) and mouse scrolling works totally wrong. I see first comments on this dated 2011. Now it is 2017 and everything is the same mess.
So. I'm using xubuntu. And I like natural mouse scrolling direction - the same way it works in MacOS X. If you want to move your page up you scroll two fingers up. If scroll down then down.
I have touchpad. By default I have reverse scrolling direction. Scrolling fingers up scroll page down, left to right. If I turn on reverse scrolling for the touchpad then I get natural scrolling direction for up/down. But left right direction is still unnatural. And separate issue is google chrome (not chromium, I didn't check it). My Chrome version is 58.0.3029.110 (64-bit). And it totally ignores system settings. It has always unnatural scrolling direction for up/down.
xubuntu google-chrome scrolling
It's the same in 18.04. I'm solving it by removing Xubuntu.
– Andreas
Feb 8 at 1:23
add a comment |
I'm using xubuntu (not unity) and mouse scrolling works totally wrong. I see first comments on this dated 2011. Now it is 2017 and everything is the same mess.
So. I'm using xubuntu. And I like natural mouse scrolling direction - the same way it works in MacOS X. If you want to move your page up you scroll two fingers up. If scroll down then down.
I have touchpad. By default I have reverse scrolling direction. Scrolling fingers up scroll page down, left to right. If I turn on reverse scrolling for the touchpad then I get natural scrolling direction for up/down. But left right direction is still unnatural. And separate issue is google chrome (not chromium, I didn't check it). My Chrome version is 58.0.3029.110 (64-bit). And it totally ignores system settings. It has always unnatural scrolling direction for up/down.
xubuntu google-chrome scrolling
I'm using xubuntu (not unity) and mouse scrolling works totally wrong. I see first comments on this dated 2011. Now it is 2017 and everything is the same mess.
So. I'm using xubuntu. And I like natural mouse scrolling direction - the same way it works in MacOS X. If you want to move your page up you scroll two fingers up. If scroll down then down.
I have touchpad. By default I have reverse scrolling direction. Scrolling fingers up scroll page down, left to right. If I turn on reverse scrolling for the touchpad then I get natural scrolling direction for up/down. But left right direction is still unnatural. And separate issue is google chrome (not chromium, I didn't check it). My Chrome version is 58.0.3029.110 (64-bit). And it totally ignores system settings. It has always unnatural scrolling direction for up/down.
xubuntu google-chrome scrolling
xubuntu google-chrome scrolling
asked May 31 '17 at 13:19
Pavel MoukhataevPavel Moukhataev
465
465
It's the same in 18.04. I'm solving it by removing Xubuntu.
– Andreas
Feb 8 at 1:23
add a comment |
It's the same in 18.04. I'm solving it by removing Xubuntu.
– Andreas
Feb 8 at 1:23
It's the same in 18.04. I'm solving it by removing Xubuntu.
– Andreas
Feb 8 at 1:23
It's the same in 18.04. I'm solving it by removing Xubuntu.
– Andreas
Feb 8 at 1:23
add a comment |
1 Answer
1
active
oldest
votes
You can reverse the scrolling direction by running this in a console.
synclient VertScrollDelta=-58; synclient HorizScrollDelta=-58
If you want keep the reverse scroll direction after restarting do the following:
Create a script /usr/local/share/set_natural_scroll.sh
with the following contents. This is the script that we will run on startup.
#!/usr/bin/bash
# Sets the scrolling direction to 'natural'
synclient VertScrollDelta=-58
synclient HorizScrollDelta=-58
Create a file ~/.config/autostart/scroll_startup.desktop
with the following contents. This will configure the script to be run on startup.
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Script
Type=Application
Exec=/usr/local/share/set_natural_scroll.sh
Icon=
Terminal=false
StartupNotify=false
Hidden=false
GenericName=
GenericName[en_US]=
When xfce starts it will now run your script and setup the scroll direction.
References: Wellllby and Brinson.
New contributor
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%2f920734%2fxubuntu-and-mouse-scrolling-direction%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can reverse the scrolling direction by running this in a console.
synclient VertScrollDelta=-58; synclient HorizScrollDelta=-58
If you want keep the reverse scroll direction after restarting do the following:
Create a script /usr/local/share/set_natural_scroll.sh
with the following contents. This is the script that we will run on startup.
#!/usr/bin/bash
# Sets the scrolling direction to 'natural'
synclient VertScrollDelta=-58
synclient HorizScrollDelta=-58
Create a file ~/.config/autostart/scroll_startup.desktop
with the following contents. This will configure the script to be run on startup.
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Script
Type=Application
Exec=/usr/local/share/set_natural_scroll.sh
Icon=
Terminal=false
StartupNotify=false
Hidden=false
GenericName=
GenericName[en_US]=
When xfce starts it will now run your script and setup the scroll direction.
References: Wellllby and Brinson.
New contributor
add a comment |
You can reverse the scrolling direction by running this in a console.
synclient VertScrollDelta=-58; synclient HorizScrollDelta=-58
If you want keep the reverse scroll direction after restarting do the following:
Create a script /usr/local/share/set_natural_scroll.sh
with the following contents. This is the script that we will run on startup.
#!/usr/bin/bash
# Sets the scrolling direction to 'natural'
synclient VertScrollDelta=-58
synclient HorizScrollDelta=-58
Create a file ~/.config/autostart/scroll_startup.desktop
with the following contents. This will configure the script to be run on startup.
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Script
Type=Application
Exec=/usr/local/share/set_natural_scroll.sh
Icon=
Terminal=false
StartupNotify=false
Hidden=false
GenericName=
GenericName[en_US]=
When xfce starts it will now run your script and setup the scroll direction.
References: Wellllby and Brinson.
New contributor
add a comment |
You can reverse the scrolling direction by running this in a console.
synclient VertScrollDelta=-58; synclient HorizScrollDelta=-58
If you want keep the reverse scroll direction after restarting do the following:
Create a script /usr/local/share/set_natural_scroll.sh
with the following contents. This is the script that we will run on startup.
#!/usr/bin/bash
# Sets the scrolling direction to 'natural'
synclient VertScrollDelta=-58
synclient HorizScrollDelta=-58
Create a file ~/.config/autostart/scroll_startup.desktop
with the following contents. This will configure the script to be run on startup.
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Script
Type=Application
Exec=/usr/local/share/set_natural_scroll.sh
Icon=
Terminal=false
StartupNotify=false
Hidden=false
GenericName=
GenericName[en_US]=
When xfce starts it will now run your script and setup the scroll direction.
References: Wellllby and Brinson.
New contributor
You can reverse the scrolling direction by running this in a console.
synclient VertScrollDelta=-58; synclient HorizScrollDelta=-58
If you want keep the reverse scroll direction after restarting do the following:
Create a script /usr/local/share/set_natural_scroll.sh
with the following contents. This is the script that we will run on startup.
#!/usr/bin/bash
# Sets the scrolling direction to 'natural'
synclient VertScrollDelta=-58
synclient HorizScrollDelta=-58
Create a file ~/.config/autostart/scroll_startup.desktop
with the following contents. This will configure the script to be run on startup.
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Script
Type=Application
Exec=/usr/local/share/set_natural_scroll.sh
Icon=
Terminal=false
StartupNotify=false
Hidden=false
GenericName=
GenericName[en_US]=
When xfce starts it will now run your script and setup the scroll direction.
References: Wellllby and Brinson.
New contributor
New contributor
answered 4 hours ago
MattClimbsMattClimbs
1011
1011
New contributor
New contributor
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%2f920734%2fxubuntu-and-mouse-scrolling-direction%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
It's the same in 18.04. I'm solving it by removing Xubuntu.
– Andreas
Feb 8 at 1:23