Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: HP Envy 14 - Touchpad Disable feature

  1. #1
    Join Date
    Feb 2007
    Location
    New Jersey, USA
    Beans
    318

    HP Envy 14 - Touchpad Disable feature

    I just got a new HP Envy 14, installed Ubuntu 10.04. The thouchpad has a little LED in the top left corner that if you tap is supposed to disable the touchpad (and the LED turns on).

    What are my chances of getting this to work? I looked through the synaptics man page and didn't see anything specific to on the fly toggling of the touchpad...

    The best workaround I've found so far is to "disable the touchpad when typing"
    Disclaimer: All of my advice is guaranteed without exception to work. If you find my advice unsatisfactory, you didn't do it right.

  2. #2
    Join Date
    Oct 2010
    Beans
    5
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: HP Envy 14 - Touchpad Disable feature

    Has anybody found anything on this one? I'm currently facing the same problem. I installed Linux Mint though..

    Cheers,
    rethab

  3. #3
    Join Date
    Oct 2005
    Location
    Red Beach(NZ)
    Beans
    41
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: HP Envy 14 - Touchpad Disable feature

    What about:
    https://help.ubuntu.com/community/SynapticsTouchpad

    ... it is a synaptics touchpad so these things will work. But afaict the corner is a software thing so we'll have to wait for it to be added to the driver as the feature becomes more common.

  4. #4
    Join Date
    Jan 2010
    Location
    65 AD
    Beans
    304
    Distro
    Ubuntu Development Release

    Re: HP Envy 14 - Touchpad Disable feature

    It's fairly simple to set up a software toggle for any input device. First look up your device in xinput.
    Code:
    xinput list
    If you're not sure which one it is then run xinput test on one and see if it responds.
    Code:
    xinput test #device
    where "#device" is the device name. Then create a file and place the following script in it.
    Code:
    # toggle synaptic touchpad on/off
    SYNSTATE=$(xinput list-props "#device" | grep Enabled | grep -Eo '.$')
    if [ $SYNSTATE = 0 ]; then xinput set-prop "#device" "Device Enabled" 1
    else xinput set-prop "#device" "Device Enabled" 0; fi
    replacing #device with the actual name of your device.
    Then save it as syntog or whatever name you like in /usr/bin/ and create a shortcut to it in "gnome-keybinding-properties" and add whatever key combination you like as a shortcut.

  5. #5
    Join Date
    Apr 2007
    Beans
    58

    Re: HP Envy 14 - Touchpad Disable feature

    This works like a charm for me! Just note that the Device "name" is actually the device number (ID).

    Thank you for this!

  6. #6
    Join Date
    Jan 2010
    Location
    65 AD
    Beans
    304
    Distro
    Ubuntu Development Release

    Re: HP Envy 14 - Touchpad Disable feature

    The device number should work alright too, but if you add another device to your system then it may change.

  7. #7
    Join Date
    Oct 2005
    Location
    Red Beach(NZ)
    Beans
    41
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: HP Envy 14 - Touchpad Disable feature

    Quote Originally Posted by pi/roman View Post
    It's fairly simple to set up a software toggle for any input device.
    Thanx for that ... note to others, the name of the device also works:

    Code:
    $ xinput test "SynPS/2 Synaptics TouchPad"
    motion a[0]=3218 a[1]=3537 
    button press   1 
    button release 1
    The output comes from tapping the top left corner - which leads to the speculation that this could be set up as the "keypress" in question - though it still won't switch the led on? Probably I'm getting too enthusiastic...
    Last edited by Simon Bridge; January 18th, 2011 at 01:10 AM.

  8. #8
    Join Date
    Feb 2007
    Location
    New Jersey, USA
    Beans
    318

    Re: HP Envy 14 - Touchpad Disable feature

    Guys, if you are really interested, you can apply a patch to xf86-input-synaptics to get the double tap to work. You can also apply a kernel patch to get the LED to work (along with additional synaptics patches).

    You can find them in Takashi Iwai's OpenSUSE Factory repo
    Disclaimer: All of my advice is guaranteed without exception to work. If you find my advice unsatisfactory, you didn't do it right.

  9. #9
    Join Date
    Jun 2007
    Location
    Arizona, USA
    Beans
    223
    Distro
    Lubuntu 12.10 Quantal Quetzal

    Thumbs down Re: HP Envy 14 - Touchpad Disable feature

    Quote Originally Posted by Meson View Post
    Disclaimer: All of my advice is guaranteed without exception to work. If you find my advice unsatisfactory, you didn't do it right.
    Excuse me, but you should consider changing your signature. I won't say what I am thinking, but will say this - I wouldn't read one of your posts from here on out if you leave that as your signature.

    Signed,
    Chief Architect for one of the world's largest IT manufacturers and service providers.

    I am always learning, many times from new users of technology. An arrogant attitude should place you firmly behind a McDonald's grill. Heaven forbid that you speak to customers.

    Your post adds zip for value, but we'll let that slide. At minimum, you could have added a URL for those searching for solutions.
    Last edited by Guilden_NL; June 11th, 2011 at 08:02 AM.
    The future will soon be a thing of the past.

  10. #10
    Join Date
    Nov 2010
    Beans
    48
    Distro
    Ubuntu

    Re: HP Envy 14 - Touchpad Disable feature

    There are patches in launchpad.net that work well under Ubuntu 11.04 to fix a lot of the touchpad issues (e.g getting right-click to work, and getting the LED tap-to-disable to work). I'm not sure if they would work under 10.04. In particular see Comment #144 (which fixes right-click, etc.) and Comment #190 (which incorporates the Comment #144 patches and adds the LED patches).

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •