Changelog:
1.1.2 Can switch from ISO to ANSI keyboard layout by editing ApplePS2Keyboard's Info.plist
For everyone who has the tilde probem, you can now switch to ANSI by changing a plist:
- Code: Select all
sudo nano /System/Library/Extensions/_ApplePS2Controller.kext/Contents/PlugIns/ApplePS2Keyboard.kext/Contents/Info.plist
# Change
# <key>Use ISO layout keyboard</key>
# <true/>
# to
# <false/>
#
sudo touch /System/Library/Extensions/
Finally, reboot for your change to be effective.
Unfortunately, you have to redo this each time you install the Enabler.
This is because the keyboard layout is stored within the kext's Info.plist itself (as opposed to being read from somewhere else in the system). Someone should really look for a cleaner way to do this (by having a deep look at how Apple does it for USB keyboards - remember that assistant that pops up the first time you connect a new USB keyboard).