public
Description: A laptop/PS2 keyboard driver for recalcitrant laptops/desktops running Leopard...er Darwin
Homepage: http://nexus.zteo.com/2008/11/30/a-driver-for-your-darwin-based-keyboard-woes/
Clone URL: git://github.com/Fusion/applekeyboarddriver.git
Chris F Ravenscroft (author)
Sat Dec 06 16:35:32 -0800 2008
applekeyboarddriver / Info.plist
100644 58 lines (57 sloc) 1.733 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>ApplePS2Keyboard</string>
<key>CFBundleGetInfoString</key>
<string>1.1.0, Copyright Apple Computer, Inc. 2000-2003</string>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.ApplePS2Keyboard</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Apple PS/2 Keyboard</string>
<key>CFBundlePackageType</key>
<string>KEXT</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.1.0</string>
<key>IOKitPersonalities</key>
<dict>
<key>ApplePS2Keyboard</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.ApplePS2Keyboard</string>
<key>IOClass</key>
<string>ApplePS2Keyboard</string>
<key>IOProviderClass</key>
<string>ApplePS2KeyboardDevice</string>
<key>Make capslock into control</key>
<false/>
<key>Swap alt and windows key</key>
<true/>
</dict>
</dict>
<key>NSHumanReadableCopyright</key>
<string>Copyright Apple Computer, Inc. 2000-2003</string>
<key>OSBundleLibraries</key>
<dict>
<key>com.apple.driver.ApplePS2Controller</key>
<string>1.1</string>
<key>com.apple.iokit.IOHIDSystem</key>
<string>1.1</string>
<key>com.apple.kernel.iokit</key>
<string>1.1</string>
<key>com.apple.kernel.libkern</key>
<string>1.1</string>
</dict>
<key>OSBundleRequired</key>
<string>Console</string>
</dict>
</plist>