Hello FreeBSD lovers.
I've installed FreeBSD 10.1 on my MacBook Pro '13 mid 2012 (MacBook Pro 9,2) and spent about two days to configure my touchpad properly.
I've found the wiki page: https://wiki.freebsd.org/AppleMacbook#Touchpad. But this page is too old and it does not help to configure touchpad on MacBook Pro.
First, to get the configuration you have to install atp(4) driver, then you have to point Xorg to use /dev/atp0 device. Then you have to use the next settings for Xorg in mouse config:
I've found this configuration somewhere on GitHub Gists. But I will play with it a bit more, maybe it is possible to configure touchpad behaviour exactly like in Mac OS X.
It would be great if someone can update wiki page: https://wiki.freebsd.org/AppleMacbook#Touchpad. Because it is too old and default configuration works very bad.
Also display is too blue on MacBook Pro with default Xorg config. I installed Redshift and now it looks a bit better, but I believe it is possible to configure it much better. Anyway this is another story and I will research this question a bit later.
Thanks.
I've installed FreeBSD 10.1 on my MacBook Pro '13 mid 2012 (MacBook Pro 9,2) and spent about two days to configure my touchpad properly.
I've found the wiki page: https://wiki.freebsd.org/AppleMacbook#Touchpad. But this page is too old and it does not help to configure touchpad on MacBook Pro.
First, to get the configuration you have to install atp(4) driver, then you have to point Xorg to use /dev/atp0 device. Then you have to use the next settings for Xorg in mouse config:
Code:
Section "InputDevice"
Identifier "Mouse0"
Driver "mutouch"
Option "Protocol" "auto"
Option "Device" "/dev/atp0"
Option "LeftEdge" "100"
Option "RightEdge" "1120"
Option "TopEdge" "50"
Option "BottomEdge" "310"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "MaxDoubleTapTime" "180"
Option "VertScrollDelta" "20"
Option "HorizScrollDelta" "50"
Option "MinSpeed" "0.79"
Option "MaxSpeed" "0.88"
Option "AccelFactor" "0.0015"
Option "SHMConfig" "on"
EndSection
It would be great if someone can update wiki page: https://wiki.freebsd.org/AppleMacbook#Touchpad. Because it is too old and default configuration works very bad.
Also display is too blue on MacBook Pro with default Xorg config. I installed Redshift and now it looks a bit better, but I believe it is possible to configure it much better. Anyway this is another story and I will research this question a bit later.
Thanks.