Ubuntu12.04 on MACのマルチタッチ

昨日xserver-xorg-input-mtrackを入れたが、使い込んでみるとデフォルトパラメータがおかしいためかタッチパネルの感触が悪すぎる。頭痛がするくらい悩まされたため、代わりのドライバとして試しにxserver-xorg-input-multitouchを入れてみたら段違いに使い勝手が良くなった。/etc/X11/xorg.confは以下。

Section "InputClass"
    MatchIsTouchpad "on"
    Identifier      "Touchpads"
#    Driver          "mtrack"                                                   
    Driver          "multitouch"
    MatchDevicePath "/dev/input/event*"
#    Option         "IgnorePalm" "true"                                         
#    Option     "ScrollUpButton" "5"                                            
#    Option     "ScrollDownButton" "4"                                          
EndSection

加えて、Lionと同様のNatural Scrollingを有効にするには、.Xmodmapに以下を追加することでいけた (参考URL)。

pointer = 1 2 3 5 4 6 7 8 9 10 11 12

素晴らしい。この使い勝手ならいけるな。13インチMacbookAirもVirtualBoxから撤退してネイティブUbuntuに移行する準備を進めよう。

I replaced the input driver from mtrack to multitouch. It is much better than the previous one.