Warning! This is Linux geekery so avoid if not interested!
So recently my Dell E1505 laptop gave up the ghost. It may just be the video card and thankfully on that laptop it's swappable.
This of course meant I needed a replacement as my personal daily driver. I pressed my writing platform into service immediately. It's a 2007 MacBook 2.16ghz Core 2 Duo with 3GB of ram and a 30GB SSD. It's running Linux Mint 13 Maya LTS. (I so want a large SSD drive but they are EXPEN$IVE!)
This is great because it's fast, lightweight, and will be supported until 2017. Cinnamon is a little slow on this box but not unbearable.
The one thing that I could not STAND and I'm surprised I withstood it the last 5 Chapters I just typed up is that I would get strange random clicks of the mouse.
The symptoms would be that you would be typing along and suddenly it would highlight your text and then next minute you'd type over what you just typed. Other symptoms included activating random functions in whatever program you were running as the mouse cursor would move over some button then click on it.
What I found after a lot of research was that the Synaptic touchpad was never truly disabling that bane of my laptop experience Tap-To-Click. It would say it was disabled but then it would still randomly work. Now it did this to a lesser degree on other notebooks but on the Macbook it was far beyond annoying.
I did FINALLY find a solution that all but eliminates the issue. The following synclient commands are what killed it:
synclient MaxTapTime=0
synclient MaxDoubleTapTime=0
I put this command in /etc/rc.local and I put a script in /etc/pm/sleep.d:
------------------------
nimitz@RGM/etc/pm/sleep.d $ ls
10_grub-common 14_disabletaptoclick
10_unattended-upgrades-hibernate novatel_3g_suspend
nimitz@RGM/etc/pm/sleep.d $ more 14*
#!/bin/bash
case $1 in
hibernate)
;;
suspend)
;;
thaw)
;;
resume)
synclient MaxTapTime=0
synclient MaxDoubleTapTime=0
;;
*)
;;
esac
---------------------
This has managed to 100% eliminate the issue for me. There are other issues with the mouse such as when it wanders into a hot corner while I'm typing but not much I can do yet about that one.
Hope someone finds this information useful! :-)
(Edit: Updated this post to also include synclient MaxDoubleTapTime=0 )
(Keywords: linux mint maya 13 tap click random highlight mouse trackpad synaptics disable)
So recently my Dell E1505 laptop gave up the ghost. It may just be the video card and thankfully on that laptop it's swappable.
This of course meant I needed a replacement as my personal daily driver. I pressed my writing platform into service immediately. It's a 2007 MacBook 2.16ghz Core 2 Duo with 3GB of ram and a 30GB SSD. It's running Linux Mint 13 Maya LTS. (I so want a large SSD drive but they are EXPEN$IVE!)
This is great because it's fast, lightweight, and will be supported until 2017. Cinnamon is a little slow on this box but not unbearable.
The one thing that I could not STAND and I'm surprised I withstood it the last 5 Chapters I just typed up is that I would get strange random clicks of the mouse.
The symptoms would be that you would be typing along and suddenly it would highlight your text and then next minute you'd type over what you just typed. Other symptoms included activating random functions in whatever program you were running as the mouse cursor would move over some button then click on it.
What I found after a lot of research was that the Synaptic touchpad was never truly disabling that bane of my laptop experience Tap-To-Click. It would say it was disabled but then it would still randomly work. Now it did this to a lesser degree on other notebooks but on the Macbook it was far beyond annoying.
I did FINALLY find a solution that all but eliminates the issue. The following synclient commands are what killed it:
synclient MaxTapTime=0
synclient MaxDoubleTapTime=0
I put this command in /etc/rc.local and I put a script in /etc/pm/sleep.d:
------------------------
nimitz@RGM/etc/pm/sleep.d $ ls
10_grub-common 14_disabletaptoclick
10_unattended-upgrades-hibernate novatel_3g_suspend
nimitz@RGM/etc/pm/sleep.d $ more 14*
#!/bin/bash
case $1 in
hibernate)
;;
suspend)
;;
thaw)
;;
resume)
synclient MaxTapTime=0
synclient MaxDoubleTapTime=0
;;
*)
;;
esac
---------------------
This has managed to 100% eliminate the issue for me. There are other issues with the mouse such as when it wanders into a hot corner while I'm typing but not much I can do yet about that one.
Hope someone finds this information useful! :-)
(Edit: Updated this post to also include synclient MaxDoubleTapTime=0 )
(Keywords: linux mint maya 13 tap click random highlight mouse trackpad synaptics disable)