I was searching for a way to toggle my touchpad on and off...
I've installed power saving packages (bumblebee, laptop-mode-tools, and cpufreq) to my laptop with Debian Wheezy. Thanks to that I decrease power usage from 32W to 10W. But now I faced the issue that I can't disable touchpad.
Updated for Openbox startup.sh...## Detect and configure touchpad.
I have written a post using app indicator to switch on/off laptop touchpad on Ubuntu panel.
I have a new thinkpad x220t running Arch Linux.
There seems to be a problem in the products hardware architecture as the TrackPoint is moving when you convert the thinkpad into tablet mode and put pressure on the screen.
Therefore I'd like to toggle the TrackPoint using a little bash script called by ACPId.
I am pretty new to udev and wanted to write a rule that upon connecting an usb mouse disables my touchpad.
This is what I have come up with(mostly by ear):
ACTION=="add", SUBSYSTEM=="input", ENV{ID_MODEL}=="USB_Mouse", ENV{DISPLAY}=":0", ENV{XAUTHORITY}="/home/nikitautiu/.Xauthority", ENV{REMOVE_CMD}="/usr/bin/synclient TouchpadOff=0", RUN+="/usr/bin/synclient TouchpadOff=1"
Nonetheless it do
You should really read the synaptics man page. It has every configuration available to you. I think it is better to learn about what you are doing rather than just blindly copy/pasting configurations from other people. Otherwise, why did you choose a DIY distribution?Just know that the variables in the synaptics man page can either be set using the configuration you already know
Hi, I have this rule inside a file I create (20-local.rules):
Code:
ACTION=="add", SUBSYSTEM=="input", ENV{ID_CLASS}="mouse", RUN+="/usr/bin/synclient TouchpadOff=1"
ACTION=="remove", SUBSYSTEM=="input", ENV{ID_CLASS}="mouse", RUN+="/usr/bin/synclient TouchpadOff=0"
This rule was working in zenwalk 6.0 but not anymo
Hi,first post on the forums! So here goes: I am unable to enable multitouch for my laptop's touchpad. I am sure that it works since it is working OOTB on most other distros. I searched through the forums, and I have tried adding synclient lines to my openbox autostart.sh, as well as various options into my 50-synaptics.conf file, but to no avail.