Fn+F8 on thinkpad not working (and possibly on asus too)
Bug #447211 reported by
Mephisto
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
acpi-support (Ubuntu) |
Fix Released
|
Medium
|
Steve Langasek |
Bug Description
Binary package hint: acpi-support
My thinkpad has Fn+F8 as hotkey for disabling the touchpad on the fly. However, it is not working on an uptodate karmic (I've just upgraded yesterday). I have traced the problem down to this line of code in /etc/acpi/
TPSTATUS=`xinput list-props $XINPUTNUM | grep "Synaptics Off" | cut -f4`
running this manually does not do anything. changing this line to:
TPSTATUS=`xinput list-props $XINPUTNUM | grep "Synaptics Off" | cut -f3`
makes it work again.
Since this parsed output from the xinput tool, I suspect this is broken on asus laptops too, as I dont see why the output would be any different there.
Changed in acpi-support (Ubuntu): | |
assignee: | nobody → Steve Langasek (vorlon) |
importance: | Undecided → Medium |
status: | New → In Progress |
To post a comment you must log in.
TPSTATUS=`xinput list-props $XINPUTNUM | grep "Synaptics Off" | cut -f4`
Except this is not what the asus-touchpad.sh script in the archive does at all! :) The one in the archive is known broken, apparently you have one that's quite a bit closer to functional than what we have in the archive right now -- perhaps you could post that version?