touchpad two finger scroll too fast
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I have a HP Probook 450 g1. I want to change the touchpad two finger scroll speed. I tried some package but nothing seems to work. also the touchpad seems to be more sensitive. is there any way to control that?
A package with UI would be a big help.
18.04 hp
add a comment |
I have a HP Probook 450 g1. I want to change the touchpad two finger scroll speed. I tried some package but nothing seems to work. also the touchpad seems to be more sensitive. is there any way to control that?
A package with UI would be a big help.
18.04 hp
Have you tried to go to: Settings - Devices - Mouse & Touchpad, then adjust Touchpad - Touchpad speed?
– Dominik Cornice
Feb 21 at 9:37
1
touchpad speed changes my pointer speed. but the two finger scrolling speed remains same.
– mosharaf
Feb 21 at 9:41
add a comment |
I have a HP Probook 450 g1. I want to change the touchpad two finger scroll speed. I tried some package but nothing seems to work. also the touchpad seems to be more sensitive. is there any way to control that?
A package with UI would be a big help.
18.04 hp
I have a HP Probook 450 g1. I want to change the touchpad two finger scroll speed. I tried some package but nothing seems to work. also the touchpad seems to be more sensitive. is there any way to control that?
A package with UI would be a big help.
18.04 hp
18.04 hp
edited Feb 21 at 9:15
mature
2,2054933
2,2054933
asked Feb 21 at 8:04
mosharafmosharaf
161
161
Have you tried to go to: Settings - Devices - Mouse & Touchpad, then adjust Touchpad - Touchpad speed?
– Dominik Cornice
Feb 21 at 9:37
1
touchpad speed changes my pointer speed. but the two finger scrolling speed remains same.
– mosharaf
Feb 21 at 9:41
add a comment |
Have you tried to go to: Settings - Devices - Mouse & Touchpad, then adjust Touchpad - Touchpad speed?
– Dominik Cornice
Feb 21 at 9:37
1
touchpad speed changes my pointer speed. but the two finger scrolling speed remains same.
– mosharaf
Feb 21 at 9:41
Have you tried to go to: Settings - Devices - Mouse & Touchpad, then adjust Touchpad - Touchpad speed?
– Dominik Cornice
Feb 21 at 9:37
Have you tried to go to: Settings - Devices - Mouse & Touchpad, then adjust Touchpad - Touchpad speed?
– Dominik Cornice
Feb 21 at 9:37
1
1
touchpad speed changes my pointer speed. but the two finger scrolling speed remains same.
– mosharaf
Feb 21 at 9:41
touchpad speed changes my pointer speed. but the two finger scrolling speed remains same.
– mosharaf
Feb 21 at 9:41
add a comment |
1 Answer
1
active
oldest
votes
The default libinput
touchpad driver installed in recent versions of Ubuntu does not have an option to adjust the two-finger scrolling speed. You can see that from the output of xinput --list-props <id>
where <id>
is the device ID of your touchpad as obtained from xinput list
.
However, with the HP Probook 450 G1 you are lucky as a Google search seems to indicate that it has a Synaptics touchpad. For this, an alternative driver is available with more options.
Install the Synaptics driver as follows and it should already work (source):
sudo apt install xserver-xorg-input-synaptics
If it does not work yet, also follow these instructions to override the
libinput
touchpad driver explicitly.
Configure the option
Synaptics Scrolling Distance
with a command like this.<id>
is the device ID of your touchpad as obtained fromxinput list
, and you have to play with the values for the vertical and horizontal scrolling distance at the end of the line to find the right ones for you. If you use negative values it will give you inverted / natural scrolling.
xinput --set-prop <id> 'Synaptics Scrolling Distance' 8 8
Once you found the right values, make them permanent using a solution from here.
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%2f1120045%2ftouchpad-two-finger-scroll-too-fast%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
The default libinput
touchpad driver installed in recent versions of Ubuntu does not have an option to adjust the two-finger scrolling speed. You can see that from the output of xinput --list-props <id>
where <id>
is the device ID of your touchpad as obtained from xinput list
.
However, with the HP Probook 450 G1 you are lucky as a Google search seems to indicate that it has a Synaptics touchpad. For this, an alternative driver is available with more options.
Install the Synaptics driver as follows and it should already work (source):
sudo apt install xserver-xorg-input-synaptics
If it does not work yet, also follow these instructions to override the
libinput
touchpad driver explicitly.
Configure the option
Synaptics Scrolling Distance
with a command like this.<id>
is the device ID of your touchpad as obtained fromxinput list
, and you have to play with the values for the vertical and horizontal scrolling distance at the end of the line to find the right ones for you. If you use negative values it will give you inverted / natural scrolling.
xinput --set-prop <id> 'Synaptics Scrolling Distance' 8 8
Once you found the right values, make them permanent using a solution from here.
add a comment |
The default libinput
touchpad driver installed in recent versions of Ubuntu does not have an option to adjust the two-finger scrolling speed. You can see that from the output of xinput --list-props <id>
where <id>
is the device ID of your touchpad as obtained from xinput list
.
However, with the HP Probook 450 G1 you are lucky as a Google search seems to indicate that it has a Synaptics touchpad. For this, an alternative driver is available with more options.
Install the Synaptics driver as follows and it should already work (source):
sudo apt install xserver-xorg-input-synaptics
If it does not work yet, also follow these instructions to override the
libinput
touchpad driver explicitly.
Configure the option
Synaptics Scrolling Distance
with a command like this.<id>
is the device ID of your touchpad as obtained fromxinput list
, and you have to play with the values for the vertical and horizontal scrolling distance at the end of the line to find the right ones for you. If you use negative values it will give you inverted / natural scrolling.
xinput --set-prop <id> 'Synaptics Scrolling Distance' 8 8
Once you found the right values, make them permanent using a solution from here.
add a comment |
The default libinput
touchpad driver installed in recent versions of Ubuntu does not have an option to adjust the two-finger scrolling speed. You can see that from the output of xinput --list-props <id>
where <id>
is the device ID of your touchpad as obtained from xinput list
.
However, with the HP Probook 450 G1 you are lucky as a Google search seems to indicate that it has a Synaptics touchpad. For this, an alternative driver is available with more options.
Install the Synaptics driver as follows and it should already work (source):
sudo apt install xserver-xorg-input-synaptics
If it does not work yet, also follow these instructions to override the
libinput
touchpad driver explicitly.
Configure the option
Synaptics Scrolling Distance
with a command like this.<id>
is the device ID of your touchpad as obtained fromxinput list
, and you have to play with the values for the vertical and horizontal scrolling distance at the end of the line to find the right ones for you. If you use negative values it will give you inverted / natural scrolling.
xinput --set-prop <id> 'Synaptics Scrolling Distance' 8 8
Once you found the right values, make them permanent using a solution from here.
The default libinput
touchpad driver installed in recent versions of Ubuntu does not have an option to adjust the two-finger scrolling speed. You can see that from the output of xinput --list-props <id>
where <id>
is the device ID of your touchpad as obtained from xinput list
.
However, with the HP Probook 450 G1 you are lucky as a Google search seems to indicate that it has a Synaptics touchpad. For this, an alternative driver is available with more options.
Install the Synaptics driver as follows and it should already work (source):
sudo apt install xserver-xorg-input-synaptics
If it does not work yet, also follow these instructions to override the
libinput
touchpad driver explicitly.
Configure the option
Synaptics Scrolling Distance
with a command like this.<id>
is the device ID of your touchpad as obtained fromxinput list
, and you have to play with the values for the vertical and horizontal scrolling distance at the end of the line to find the right ones for you. If you use negative values it will give you inverted / natural scrolling.
xinput --set-prop <id> 'Synaptics Scrolling Distance' 8 8
Once you found the right values, make them permanent using a solution from here.
answered Apr 10 at 20:36
taniustanius
2,6971823
2,6971823
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%2f1120045%2ftouchpad-two-finger-scroll-too-fast%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
Have you tried to go to: Settings - Devices - Mouse & Touchpad, then adjust Touchpad - Touchpad speed?
– Dominik Cornice
Feb 21 at 9:37
1
touchpad speed changes my pointer speed. but the two finger scrolling speed remains same.
– mosharaf
Feb 21 at 9:41