public
Description: A SIMBL plugin for Terminal.app which enable us to copy on selection.
Homepage: http://blog.s21g.com/articles/1075
Clone URL: git://github.com/genki/terminalcopyonselect.git
terminalcopyonselect / Info.plist
100644 38 lines (37 sloc) 1.052 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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//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>${EXECUTABLE_NAME}</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>com.s21g.TerminalCopyOnSelect</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.1.0</string>
<key>NSPrincipalClass</key>
<string>TerminalCopyOnSelect</string>
<key>SIMBLTargetApplications</key>
<array>
<dict>
<key>BundleIdentifier</key>
<string>com.apple.Terminal</string>
<key>MaxBundleVersion</key>
<string>272</string>
<key>MinBundleVersion</key>
<string>237</string>
</dict>
</array>
</dict>
</plist>