** Changed in: gnome-volume-manager (Ubuntu)
Importance: Undecided => Wishlist
Status: New => Won't Fix
--
Option to turn off touch pad when a mouse is attached
https://bugs.launchpad.net/bugs/92175
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, whic
I attached this script as the one to be executed when mouse is
connected:
#!/bin/sh
mouse=`lsusb | grep Mouse`
if [ "$mouse" != "" ]; then
`synclient TouchpadOff=1`
echo "off" > /tmp/touchpad_status
else
`synclient TouchpadOff=0`
echo "on" > /tmp/touchpad_status
fi
File "/tmp/tou