私の新しいMagic Mouseで同様の悩みに直面したので、サードパーティのソリューションを必要としないスクリプトを思いつきました。私のブログ記事でそれについて読むことができます。これをKeyboard Maestroの便利なメニューオプションとして実行し、Dropboxに保持しますが、基本的には単なるシェルスクリプトです。興味があるなら、ここにスクリプトがあります:
#!/bin/sh
# Kill Mouse Acceleration and set Mouse sensitivity
# Author: [Kaushik Gopal](http://journal.kaush.co/475/run-kill-mouse-acceleration-on-login-with-keyboard-maestro)
# ----------------------------------------
# Check if the killmouseaccel script is installed in the Dropbox folder
if ! [ -f ~/Dropbox/"Utility Belt"/killmouseaccel ]
then
echo "You don't have the kill script installed. Will try to connect to the net and install it now";
curl -O http://ktwit.net/code/killmouseaccel
chmod +x killmouseaccel
mv killmouseaccel ~/Dropbox/"Utility Belt"/
fi
# No run the script
if [ -f ~/Dropbox/"Utility Belt"/killmouseaccel ]
then
# first set mouse sensitivity to sane levels
defaults write -g com.apple.mouse.scaling 1.8
# defaults read -g com.apple.mouse.scaling
# run the kill mouse script
~/Dropbox/"Utility Belt"/killmouseaccel mouse
echo "\nMouse Acceleration: Killed \nMouse:Sensitivity : 1.8\n";
else
echo "\nCouldn't install the kill Mouse Acceleration script. Sorry nothing done.\n";
fi
マウスの感度を1.8に設定しましたが、これで十分です。好きな値まで増減します。
実際にマウスアクセラレーションのキルスクリプトを考案したktwit.netの紳士/女性の小道具。