Results 1 to 4 of 4

Thread: Re-map touchpad corners and make it permanent (even after system restart)

  1. #1
    Join Date
    Jun 2010
    Beans
    35

    Re-map touchpad corners and make it permanent (even after system restart)

    Ok guys, just can't find the answer for this one (after Google and these forums)...

    So I want to configure my Synaptics touchpad in this fashion:

    Code:
    synclient RTCornerButton=8 RBCornerButton=10 LTCornerButton=11 LBCornerButton=12 FastTaps=1
    This line of code does what it's intended of it. However, the changes made don't really stick after a system reboot...I'll explain:

    So, the "FastTaps" part works flawlessly (as intended).
    However, the corners bit doesn't work after system reboot!...and weird enough, if I set up a start up script with that bit of code on it it'll only remap the last two corners (LT and LB), because RT and RB always get automatically set to "2" and "3"...
    It's obvious then that those corners are getting remaped somewhere I haven't found yet...

    I've already tried ppa:yurivkhan/ppa and adding new options to "usr/lib/X11/xorg.conf.d/10-synaptics.conf" to no avail either...

    Any ideas how to make the remap of touchpad corners permanent?


    P.S. - I'm using Ubuntu 10.04 LTS with Macbuntu.

  2. #2
    Join Date
    Aug 2009
    Beans
    181
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Re-map touchpad corners and make it permanent (even after system restart)

    Have you tried making a script with that command and adding it to System→Preferences→Startup Applications?

  3. #3
    Join Date
    Jun 2010
    Beans
    35

    Re: Re-map touchpad corners and make it permanent (even after system restart)

    Ooops!...sorry! Just noticed I didn't mention that!

    Yes, when I said it didn't work completely after reboot (only some of the re-mapping worked) that was with a script added to the start up applications!...among other stuff that script included that line of code on first post!

  4. #4
    Join Date
    Jun 2010
    Beans
    35

    Re: Re-map touchpad corners and make it permanent (even after system restart)

    So in the meantime after a few more digging I eventually stumbled across a working solution!

    I just changed the folder of the files (yes, in the code too) and the "synclient" line and now every corner of the touchpad and "FastTaps" get correctly configured even after reboot!

    Hope this helps anyone with the same problem

    Cheers!


    EDIT:

    Admitedly, since the working solution posted above implies a constant loop, and it's not that pretty, I've managed to find a second and maybe simpler way to solve this problem...
    It's pretty basic, but somehow I didn't remember it at first (don't ask me how)...
    I just put this code (among other stuff) in a script on startup applications:

    Code:
    sleep 5
    synclient RTCornerButton=8 RBCornerButton=10 LTCornerButton=11 LBCornerButton=12 FastTaps=1
    (you know, just in case this could be helpful for anyone else...)
    Last edited by blehmeco; February 16th, 2011 at 05:44 PM.

Tags for this Thread

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
  •