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

Thread: asus 1201n turn off mouse pad on laptop?

  1. #1
    Join Date
    Feb 2009
    Location
    Michigan
    Beans
    159
    Distro
    Ubuntu 18.04 Bionic Beaver

    asus 1201n turn off mouse pad on laptop?

    Well my FN button don't work to allow me to turn off the built in mouse on my laptop. I hate the thing tend to hit it constantly when i'm typing and stuff.

    Is their anyway to manually turn this off? I looked in my bios and it's not their like it was with my old laptop.

    Just curious if their is anyway in the os that list devices? so i can disable it or something?
    Phenom 2 x4 820 2.8ghz-8gb DDR2-Geforce evga 750ti-Samsung SSD 240gb

  2. #2
    Join Date
    Feb 2008
    Location
    Texas City, Texas
    Beans
    830
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: asus 1201n turn off mouse pad on laptop?

    You can go into System -> Preferences -> Mouse, click on the Touchpad tab and untick the "Enable touchpad" option. I have never used it, but I would assume that it turns off the touchpad.

    Just realized that you are running Xubuntu. I do not know if the same options exist or not.
    Last edited by Miljet; February 11th, 2010 at 04:59 AM. Reason: Added
    Break it, fix it, learn something.
    People who never make mistakes seldom make anything!

  3. #3
    Join Date
    Feb 2009
    Location
    Michigan
    Beans
    159
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: asus 1201n turn off mouse pad on laptop?

    Yeah it's different anyone else know where to shut it off?
    Phenom 2 x4 820 2.8ghz-8gb DDR2-Geforce evga 750ti-Samsung SSD 240gb

  4. #4
    Join Date
    Feb 2009
    Location
    Michigan
    Beans
    159
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: asus 1201n turn off mouse pad on laptop?

    I switched over to ubuntu to see and that option is not on their. Don't exist in 9.10 i guess anyone have a clue how to get rid of it?
    Phenom 2 x4 820 2.8ghz-8gb DDR2-Geforce evga 750ti-Samsung SSD 240gb

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

    Re: asus 1201n turn off mouse pad on laptop?

    I made a script to toggle the touchpad off when you plug in a usb mouse.
    toggle when using usbmouse
    Make a script to disable the touchpad and one to enable it called "synkill.sh" and "synwake.sh" using the name of your touchpad as described in 5b of the guide:
    Code:
    DISPLAY=:0 xinput set-int-prop 'SynPS/2 Synaptics TouchPad' 'Device Enabled' 8 0
    Code:
    DISPLAY=:0 xinput set-int-prop 'SynPS/2 Synaptics TouchPad' 'Device Enabled' 8 1
    Now create a udev rule to enact the scrpit when the mouse is changed and place it in /etc/udev/rules.d/:
    ACTION=="add", SUBSYSTEMS=="usb", DRIVER=="usbhid", ATTRS{product}=="*Mouse", RUN+="/bin/sh -c /usr/bin/synkill.sh"
    ACTION=="remove", ATTRS{product}=="UHCI Host Controller", RUN+="/bin/sh -c /usr/bin/synwake.sh"
    I also have a guide for adjusting permanent settings on the touchpad.

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

    Re: asus 1201n turn off mouse pad on laptop?

    Did this solve the problem?

  7. #7
    Join Date
    Dec 2009
    Beans
    18

    Re: asus 1201n turn off mouse pad on laptop?

    Could you please explain what you mean by '5b of the guide'

    Cheers,
    Sam

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

    Re: asus 1201n turn off mouse pad on laptop?

    Whoops, I forgot to provide a link to it: http://ubuntuforums.org/showthread.php?t=1401645
    And I have revised the guide a bit but there is still a command in section 5b that will list the name of the touchpad and it's properties here:
    Code:
    xinput list --short | grep -i 'touchpad' | grep -o '"[^"]*"' | xargs xinput list-props
    But I have also updated the mouse hot plug toggle so you don't need to know the name of the touchpad. Using these two scripts which should be placed in /usr/bin/:
    Code:
    DISPLAY=:0 xinput list --short | grep -i 'touchpad' | grep -o '"[^"]*"' | DISPLAY=:0 xargs -I nero xinput set-int-prop nero 'Device Enabled' 8 0
    Code:
    DISPLAY=:0 xinput list --short | grep -i 'touchpad' | grep -o '"[^"]*"' | DISPLAY=:0 xargs -I nero xinput set-int-prop nero 'Device Enabled' 8 1
    And a simplified udev rule to place in /etc/udev/rules.d/ which will be applied by plugging any usb mouse:
    HTML Code:
    ACTION=="add", SUBSYSTEMS=="usb", ID_CLASS="mouse", RUN+="/bin/sh -c /usr/bin/synkill.sh"
    ACTION=="remove", SUBSYSTEMS=="usb", ID_CLASS="mouse",  RUN+="/bin/sh -c /usr/bin/synwake.sh"

  9. #9
    Join Date
    Dec 2009
    Beans
    18

    Re: asus 1201n turn off mouse pad on laptop?

    I've made the first script and saved it in my home directory, then tried to copy it across to usr/bin and was told:

    Code:
    sam@angus:~$ cp -v /home/sam/synkill.sh /usr/bin/
    `/home/sam/synkill.sh' -> `/usr/bin/synkill.sh'
    cp: cannot create regular file `/usr/bin/synkill.sh': Permission denied
    I also could not save directly to /usr/bin

    I assume I've made some basic permissions error but not quite sure what, or how to fix it.

    Any help greatly appreciated.

    Cheers,
    Sam

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

    Re: asus 1201n turn off mouse pad on laptop?

    You've got it right, just be sure to make the script executable first by right clicking on it, selcecting "properties", then "permissions" tab, and check the box to "allow executing file as program" then place a sudo before your command to copy it.
    Code:
    sudo cp -v /home/sam/synkill.sh /usr/bin/

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
  •