Anyone know how to turn off the touchpad on my newish HP laptop? The X synaptics tool doesn't do it.
Leslie -- Operating System: Linux Distribution: openSUSE Leap 15.4 x86_64 Desktop Environment: Trinity Qt: 3.5.0 TDE: R14.0.12 tde-config: 1.0
In general: xinput set-prop id-number "Device Enabled" 0 Specific example (if I wanted to disable my UVC Camera):
xinput set-prop 12 "Device Enabled" 0
You need to identify the id-number of the touchpad first.
Steps: 1. at the command prompt, use:
xinput list
Example output:
xinput list ⎡ Virtual core pointer id=2 [master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] ⎜ ↳ Razer Razer Ornata Chroma id=10 [slave pointer (2)] ⎜ ↳ Razer Razer Ornata Chroma id=11 [slave pointer (2)] ⎜ ↳ Logitech K330 id=13 [slave pointer (2)] ⎜ ↳ Logitech M215 2nd Gen 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)] ↳ Power Button id=7 [slave keyboard (3)] ↳ Sleep Button id=8 [slave keyboard (3)] ↳ Razer Razer Ornata Chroma id=9 [slave keyboard (3)] ↳ UVC Camera (046d:0825) id=12 [slave keyboard (3)] ↳ Razer Razer Ornata Chroma id=15 [slave keyboard (3)] ↳ Logitech K330 id=16 [slave keyboard (3)]
From the output, determine the id of your device.
On Fri, Sep 16, 2022 at 4:10 PM J Leslie Turriff jlturriff@mail.com wrote:
Anyone know how to turn off the touchpad on my newish HP laptop?
The X synaptics tool doesn't do it.
Leslie
Operating System: Linux Distribution: openSUSE Leap 15.4 x86_64 Desktop Environment: Trinity Qt: 3.5.0 TDE: R14.0.12 tde-config: 1.0 ____________________________________________________ tde-users mailing list -- users@trinitydesktop.org To unsubscribe send an email to users-leave@trinitydesktop.org Web mail archive available at https://mail.trinitydesktop.org/mailman3/hyperkitty/list/users@trinitydeskto...
On 2022-09-16 20:06:58 James Leone wrote:
In general: xinput set-prop id-number "Device Enabled" 0 Specific example (if I wanted to disable my UVC Camera):
xinput set-prop 12 "Device Enabled" 0
You need to identify the id-number of the touchpad first.
Steps:
- at the command prompt, use:
xinput list
Example output:
xinput list ⎡ Virtual core pointer id=2 [master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] ⎜ ↳ Razer Razer Ornata Chroma id=10 [slave pointer (2)] ⎜ ↳ Razer Razer Ornata Chroma id=11 [slave pointer (2)] ⎜ ↳ Logitech K330 id=13 [slave pointer (2)] ⎜ ↳ Logitech M215 2nd Gen 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)] ↳ Power Button id=7 [slave keyboard (3)] ↳ Sleep Button id=8 [slave keyboard (3)] ↳ Razer Razer Ornata Chroma id=9 [slave keyboard (3)] ↳ UVC Camera (046d:0825) id=12 [slave keyboard (3)] ↳ Razer Razer Ornata Chroma id=15 [slave keyboard (3)] ↳ Logitech K330 id=16 [slave keyboard (3)]
From the output, determine the id of your device.
Yes, that works. Thank you. Should I put that into my .bashrc, or will it be remembered across logout/ins?
Leslie -- Operating System: Linux Distribution: openSUSE Leap 15.4 x86_64 Desktop Environment: Trinity Qt: 3.5.0 TDE: R14.0.12 tde-config: 1.0
Leslie --
Anno domini 2022 Fri, 16 Sep 23:32:58 -0500 J Leslie Turriff scripsit:
On 2022-09-16 20:06:58 James Leone wrote:
In general: xinput set-prop id-number "Device Enabled" 0 Specific example (if I wanted to disable my UVC Camera):
xinput set-prop 12 "Device Enabled" 0
You need to identify the id-number of the touchpad first.
Steps:
- at the command prompt, use:
xinput list
Example output:
xinput list ⎡ Virtual core pointer id=2 [master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] ⎜ ↳ Razer Razer Ornata Chroma id=10 [slave pointer (2)] ⎜ ↳ Razer Razer Ornata Chroma id=11 [slave pointer (2)] ⎜ ↳ Logitech K330 id=13 [slave pointer (2)] ⎜ ↳ Logitech M215 2nd Gen 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)] ↳ Power Button id=7 [slave keyboard (3)] ↳ Sleep Button id=8 [slave keyboard (3)] ↳ Razer Razer Ornata Chroma id=9 [slave keyboard (3)] ↳ UVC Camera (046d:0825) id=12 [slave keyboard (3)] ↳ Razer Razer Ornata Chroma id=15 [slave keyboard (3)] ↳ Logitech K330 id=16 [slave keyboard (3)]
From the output, determine the id of your device.
Yes, that works. Thank you. Should I put that into my .bashrc, or will it be remembered across logout/ins?
~/.xsessionrc would be the right place.
Nik
Leslie
Operating System: Linux Distribution: openSUSE Leap 15.4 x86_64 Desktop Environment: Trinity Qt: 3.5.0 TDE: R14.0.12 tde-config: 1.0
Leslie
On 2022-09-17 02:12:00 Dr. Nikolaus Klepp wrote:
From the output, determine the id of your device.
Yes, that works. Thank you. Should I put that into my .bashrc, or will it be remembered across logout/ins?
~/.xsessionrc would be the right place.
Nik
Ah. Of course. Thanks.
Leslie
On Fri, Sep 16, 2022 at 23:32 (-0500), J Leslie Turriff wrote:
On 2022-09-16 20:06:58 James Leone wrote:
In general: xinput set-prop id-number "Device Enabled" 0 Specific example (if I wanted to disable my UVC Camera):
xinput set-prop 12 "Device Enabled" 0
You need to identify the id-number of the touchpad first.
Steps:
- at the command prompt, use:
<snip>
From the output, determine the id of your device.
Yes, that works. Thank you. Should I put that into my .bashrc, or will it be remembered across logout/ins?
In case James doesn't get back to you soon...
A quick experiment will probably show you that it will not be remembered across logout / logins.
Yes, if you put that command into your .bashrc (assuming you use bash) you should be good to go.
Jim
I made a bash script for the laptop i did this for a while back and plonked it into ~/.trinity/Autostart.
(Executable text file)
"~" means home directory.
For the lay person.
On Sat, Sep 17, 2022, 6:01 AM Jim zlists@ns.sympatico.ca wrote:
On Fri, Sep 16, 2022 at 23:32 (-0500), J Leslie Turriff wrote:
On 2022-09-16 20:06:58 James Leone wrote:
In general: xinput set-prop id-number "Device Enabled" 0 Specific example (if I wanted to disable my UVC Camera):
xinput set-prop 12 "Device Enabled" 0
You need to identify the id-number of the touchpad first.
Steps:
- at the command prompt, use:
<snip>
From the output, determine the id of your device.
Yes, that works. Thank you. Should I put that into my .bashrc,
or will it be remembered
across logout/ins?
In case James doesn't get back to you soon...
A quick experiment will probably show you that it will not be remembered across logout / logins.
Yes, if you put that command into your .bashrc (assuming you use bash) you should be good to go.
Jim
tde-users mailing list -- users@trinitydesktop.org To unsubscribe send an email to users-leave@trinitydesktop.org Web mail archive available at https://mail.trinitydesktop.org/mailman3/hyperkitty/list/users@trinitydeskto...
On 2022-09-17 08:29:51 James Leone wrote:
I made a bash script for the laptop i did this for a while back and plonked it into ~/.trinity/Autostart.
(Executable text file)
"~" means home directory.
For the lay person.
On Sat, Sep 17, 2022, 6:01 AM Jim zlists@ns.sympatico.ca wrote:
On Fri, Sep 16, 2022 at 23:32 (-0500), J Leslie Turriff wrote:
On 2022-09-16 20:06:58 James Leone wrote:
In general: xinput set-prop id-number "Device Enabled" 0 Specific example (if I wanted to disable my UVC Camera):
xinput set-prop 12 "Device Enabled" 0
You need to identify the id-number of the touchpad first.
Steps:
- at the command prompt, use:
<snip>
From the output, determine the id of your device.
Yes, that works. Thank you. Should I put that into my .bashrc,
or will it be remembered
across logout/ins?
In case James doesn't get back to you soon...
A quick experiment will probably show you that it will not be remembered across logout / logins.
Yes, if you put that command into your .bashrc (assuming you use bash) you should be good to go.
Jim
There seem to be multiple ways of making this work. I tried the .xsessionrc method, and I'm happy with that.
Leslie -- Operating System: Linux Distribution: openSUSE Leap 15.4 x86_64 Desktop Environment: Trinity Qt: 3.5.0 TDE: R14.0.12 tde-config: 1.0
Anno domini 2022 Sun, 18 Sep 14:22:18 -0500 J Leslie Turriff scripsit:
On 2022-09-17 08:29:51 James Leone wrote:
I made a bash script for the laptop i did this for a while back and plonked it into ~/.trinity/Autostart.
(Executable text file)
"~" means home directory.
For the lay person.
On Sat, Sep 17, 2022, 6:01 AM Jim zlists@ns.sympatico.ca wrote:
On Fri, Sep 16, 2022 at 23:32 (-0500), J Leslie Turriff wrote:
On 2022-09-16 20:06:58 James Leone wrote:
In general: xinput set-prop id-number "Device Enabled" 0 Specific example (if I wanted to disable my UVC Camera):
xinput set-prop 12 "Device Enabled" 0
You need to identify the id-number of the touchpad first.
Steps:
- at the command prompt, use:
<snip>
From the output, determine the id of your device.
Yes, that works. Thank you. Should I put that into my .bashrc,
or will it be remembered
across logout/ins?
In case James doesn't get back to you soon...
A quick experiment will probably show you that it will not be remembered across logout / logins.
Yes, if you put that command into your .bashrc (assuming you use bash) you should be good to go.
Jim
There seem to be multiple ways of making this work. I tried the .xsessionrc method, and I'm happy with that.
.xsession is executed once at Xorg session start, .bashrc is executed every time you start a bash for your user, interactive or not, in an Xorg environment or not - which could have funny effects :)
Nik
Leslie
Operating System: Linux Distribution: openSUSE Leap 15.4 x86_64 Desktop Environment: Trinity Qt: 3.5.0 TDE: R14.0.12 tde-config: 1.0 ____________________________________________________ tde-users mailing list -- users@trinitydesktop.org To unsubscribe send an email to users-leave@trinitydesktop.org Web mail archive available at https://mail.trinitydesktop.org/mailman3/hyperkitty/list/users@trinitydeskto...
-- Please do not email me anything that you are not comfortable also sharing with the NSA, CIA ...