nobbler
Banned
Thread Starter
- Mitglied seit
- 24.01.2008
- Beiträge
- 930
gerade was interessantes gefunden:
funktioniert tadellos
http://forums.macrumors.com/showpost.php?p=6765974&postcount=179
eine vielleicht eher zukunftsträchtigere copy&paste alternative fürs terminal, wenn sich der rest der .plist einmal ändert (habe es selbst noch nicht ausprobiert, deswegen ohne gewähr!):
funktioniert tadellos
http://forums.macrumors.com/showpost.php?p=6765974&postcount=179
eine vielleicht eher zukunftsträchtigere copy&paste alternative fürs terminal, wenn sich der rest der .plist einmal ändert (habe es selbst noch nicht ausprobiert, deswegen ohne gewähr!):
Code:
echo "--------------- 4-Finger Gesture Enabler 0.1 -----------------"
echo "--------------------------------------------------------------"
echo "Copyright 2008 Nikolaj Schumacher"
echo ""
echo "This program is free software; you can redistribute it and/or"
echo "modify it under the terms of the GNU General Public License"
echo "as published by the Free Software Foundation; either version 2"
echo "of the License, or (at your option) any later version."
echo ""
echo "This program is distributed in the hope that it will be useful,"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
echo "GNU General Public License for more details."
echo "--------------------------------------------------------------"
echo ""
tmp=`mktemp -t plist`
plist='/System/Library/Extensions/AppleUSBMultitouch.kext/Contents/Info.plist'
orig='<key>bConfigurationValue<\/key>'
new='<key>TrackpadFourFingerGestures<\/key><true\/><key>TrackpadSecondaryClickCorners<\/key><true\/>'
cp "$plist" ~/4-finger-backup.plist
cat "$plist" | sed "s/$orig/$new$orig/g" > "$tmp"
sudo mv "$tmp" "$plist"
sudo chown root: "$plist"
sudo chmod 755 "$plist"
sudo rm -rf /System/Library/Caches/com.apple.kernelcaches/
echo ""
echo "------------------- Please reboot now! -----------------------"
echo "--------------- If necessary, reboot twice. ------------------"
echo "---------------- Don't re-run this script. -------------------"
Zuletzt bearbeitet: