새로운 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의 gent / lady에게 실제로 마우스 가속 킬 스크립트를 제안했습니다.