Disable laptop pointing stick
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
How do I disable the pointing stick of a laptop (that mouse pointer in the middle of the keyboard)?
The only option available in the BIOS also disables the Touchpad, so it needs to be done from the OS.
hardware laptop
add a comment |Â
up vote
0
down vote
favorite
How do I disable the pointing stick of a laptop (that mouse pointer in the middle of the keyboard)?
The only option available in the BIOS also disables the Touchpad, so it needs to be done from the OS.
hardware laptop
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
How do I disable the pointing stick of a laptop (that mouse pointer in the middle of the keyboard)?
The only option available in the BIOS also disables the Touchpad, so it needs to be done from the OS.
hardware laptop
How do I disable the pointing stick of a laptop (that mouse pointer in the middle of the keyboard)?
The only option available in the BIOS also disables the Touchpad, so it needs to be done from the OS.
hardware laptop
asked Feb 17 at 15:35
Jérôme
7862728
7862728
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
3
down vote
ÃÂ 1 - Use xinput to identify the device
Example on a Dell Latitude E6410
xinput
â¡ Virtual core pointer id=2 [master pointer (3)]
â â³ Virtual core XTEST pointer id=4 [slave pointer (2)]
â â³ Logitech Logitech USB Optical Mouse id=11 [slave pointer (2)]
â â³ AlpsPS/2 ALPS DualPoint TouchPad id=15 [slave pointer (2)]
â â³ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
⣠Virtual core keyboard id=3 [master keyboard (2)]
â³ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
â³ Power Button id=6 [slave keyboard (3)]
â³ Video Bus id=7 [slave keyboard (3)]
â³ Power Button id=8 [slave keyboard (3)]
â³ Sleep Button id=9 [slave keyboard (3)]
â³ Laptop_Integrated_Webcam_3M: In id=10 [slave keyboard (3)]
â³ Dell WMI hotkeys id=12 [slave keyboard (3)]
â³ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]
2 - Use xinput to disable the device
xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0
3 - Execute the command on startup
To disable it for all users (and for the graphical login window), one can run it as root on startup using cron
. This is the preferred way if the trackpoint is broken and root privileges are granted on the machine.
Disabling as user may depend on the desktop environment.
Typically, one would put the command in a script
#!/bin/sh
xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0
make the script executable (chmod + x
) and call it on startup.
It is absolutely equivalent to call the command line directly without writing it in a script. Just a matter of preference. The script is a nice way to record the command in case it would be accidentaly removed from the startup commands.
Source : Disabling the track stick in Ubuntu
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
ÃÂ 1 - Use xinput to identify the device
Example on a Dell Latitude E6410
xinput
â¡ Virtual core pointer id=2 [master pointer (3)]
â â³ Virtual core XTEST pointer id=4 [slave pointer (2)]
â â³ Logitech Logitech USB Optical Mouse id=11 [slave pointer (2)]
â â³ AlpsPS/2 ALPS DualPoint TouchPad id=15 [slave pointer (2)]
â â³ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
⣠Virtual core keyboard id=3 [master keyboard (2)]
â³ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
â³ Power Button id=6 [slave keyboard (3)]
â³ Video Bus id=7 [slave keyboard (3)]
â³ Power Button id=8 [slave keyboard (3)]
â³ Sleep Button id=9 [slave keyboard (3)]
â³ Laptop_Integrated_Webcam_3M: In id=10 [slave keyboard (3)]
â³ Dell WMI hotkeys id=12 [slave keyboard (3)]
â³ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]
2 - Use xinput to disable the device
xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0
3 - Execute the command on startup
To disable it for all users (and for the graphical login window), one can run it as root on startup using cron
. This is the preferred way if the trackpoint is broken and root privileges are granted on the machine.
Disabling as user may depend on the desktop environment.
Typically, one would put the command in a script
#!/bin/sh
xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0
make the script executable (chmod + x
) and call it on startup.
It is absolutely equivalent to call the command line directly without writing it in a script. Just a matter of preference. The script is a nice way to record the command in case it would be accidentaly removed from the startup commands.
Source : Disabling the track stick in Ubuntu
add a comment |Â
up vote
3
down vote
ÃÂ 1 - Use xinput to identify the device
Example on a Dell Latitude E6410
xinput
â¡ Virtual core pointer id=2 [master pointer (3)]
â â³ Virtual core XTEST pointer id=4 [slave pointer (2)]
â â³ Logitech Logitech USB Optical Mouse id=11 [slave pointer (2)]
â â³ AlpsPS/2 ALPS DualPoint TouchPad id=15 [slave pointer (2)]
â â³ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
⣠Virtual core keyboard id=3 [master keyboard (2)]
â³ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
â³ Power Button id=6 [slave keyboard (3)]
â³ Video Bus id=7 [slave keyboard (3)]
â³ Power Button id=8 [slave keyboard (3)]
â³ Sleep Button id=9 [slave keyboard (3)]
â³ Laptop_Integrated_Webcam_3M: In id=10 [slave keyboard (3)]
â³ Dell WMI hotkeys id=12 [slave keyboard (3)]
â³ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]
2 - Use xinput to disable the device
xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0
3 - Execute the command on startup
To disable it for all users (and for the graphical login window), one can run it as root on startup using cron
. This is the preferred way if the trackpoint is broken and root privileges are granted on the machine.
Disabling as user may depend on the desktop environment.
Typically, one would put the command in a script
#!/bin/sh
xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0
make the script executable (chmod + x
) and call it on startup.
It is absolutely equivalent to call the command line directly without writing it in a script. Just a matter of preference. The script is a nice way to record the command in case it would be accidentaly removed from the startup commands.
Source : Disabling the track stick in Ubuntu
add a comment |Â
up vote
3
down vote
up vote
3
down vote
ÃÂ 1 - Use xinput to identify the device
Example on a Dell Latitude E6410
xinput
â¡ Virtual core pointer id=2 [master pointer (3)]
â â³ Virtual core XTEST pointer id=4 [slave pointer (2)]
â â³ Logitech Logitech USB Optical Mouse id=11 [slave pointer (2)]
â â³ AlpsPS/2 ALPS DualPoint TouchPad id=15 [slave pointer (2)]
â â³ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
⣠Virtual core keyboard id=3 [master keyboard (2)]
â³ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
â³ Power Button id=6 [slave keyboard (3)]
â³ Video Bus id=7 [slave keyboard (3)]
â³ Power Button id=8 [slave keyboard (3)]
â³ Sleep Button id=9 [slave keyboard (3)]
â³ Laptop_Integrated_Webcam_3M: In id=10 [slave keyboard (3)]
â³ Dell WMI hotkeys id=12 [slave keyboard (3)]
â³ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]
2 - Use xinput to disable the device
xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0
3 - Execute the command on startup
To disable it for all users (and for the graphical login window), one can run it as root on startup using cron
. This is the preferred way if the trackpoint is broken and root privileges are granted on the machine.
Disabling as user may depend on the desktop environment.
Typically, one would put the command in a script
#!/bin/sh
xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0
make the script executable (chmod + x
) and call it on startup.
It is absolutely equivalent to call the command line directly without writing it in a script. Just a matter of preference. The script is a nice way to record the command in case it would be accidentaly removed from the startup commands.
Source : Disabling the track stick in Ubuntu
ÃÂ 1 - Use xinput to identify the device
Example on a Dell Latitude E6410
xinput
â¡ Virtual core pointer id=2 [master pointer (3)]
â â³ Virtual core XTEST pointer id=4 [slave pointer (2)]
â â³ Logitech Logitech USB Optical Mouse id=11 [slave pointer (2)]
â â³ AlpsPS/2 ALPS DualPoint TouchPad id=15 [slave pointer (2)]
â â³ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
⣠Virtual core keyboard id=3 [master keyboard (2)]
â³ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
â³ Power Button id=6 [slave keyboard (3)]
â³ Video Bus id=7 [slave keyboard (3)]
â³ Power Button id=8 [slave keyboard (3)]
â³ Sleep Button id=9 [slave keyboard (3)]
â³ Laptop_Integrated_Webcam_3M: In id=10 [slave keyboard (3)]
â³ Dell WMI hotkeys id=12 [slave keyboard (3)]
â³ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]
2 - Use xinput to disable the device
xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0
3 - Execute the command on startup
To disable it for all users (and for the graphical login window), one can run it as root on startup using cron
. This is the preferred way if the trackpoint is broken and root privileges are granted on the machine.
Disabling as user may depend on the desktop environment.
Typically, one would put the command in a script
#!/bin/sh
xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0
make the script executable (chmod + x
) and call it on startup.
It is absolutely equivalent to call the command line directly without writing it in a script. Just a matter of preference. The script is a nice way to record the command in case it would be accidentaly removed from the startup commands.
Source : Disabling the track stick in Ubuntu
edited Feb 22 at 9:35
answered Feb 17 at 15:35
Jérôme
7862728
7862728
add a comment |Â
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f424821%2fdisable-laptop-pointing-stick%23new-answer', 'question_page');
);
Post as a guest
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
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
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