-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathInfo.plist
More file actions
93 lines (93 loc) · 2.99 KB
/
Info.plist
File metadata and controls
93 lines (93 loc) · 2.99 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?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>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.blacktree.Quicksilver.QSExtraScriptsPlugIn</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.2</string>
<key>CFBundleVersion</key>
<string>9F</string>
<key>QSPlugIn</key>
<dict>
<key>author</key>
<string>Blacktree, Inc., Patrick Robertson</string>
<key>categories</key>
<array>
<string>Quicksilver</string>
</array>
<key>description</key>
<string>AppleScripts for commonly used system tasks</string>
<key>extendedDescription</key>
<string><p>This plugin adds a catalog entry titled "Scripts (Extra Scripts Plugin)" to your catalog which includes Shell/AppleScripts that emulate some OS functions like restarting and process actions.</p>
<p>The plugins includes scripts for:</p>
<ul>
<li>System Volume control</li>
<li>Showing the Keyboard Viewer and Character Palette</li>
<li>Managing the user session: Logout, Lock Screen etc.</li>
<li>System Controls such as Restart, Shutdown, Sleep, Eject</li>
</ul>
<p>For a full list of scripts, see the plugin's catalog entry (titles "Scripts (Extra Scripts Plugin)")</p></string>
<key>icon</key>
<string>ScriptIcon</string>
<key>requiresFeature</key>
<string>0</string>
</dict>
<key>QSPresetAdditions</key>
<array>
<dict>
<key>ID</key>
<string>QSPresetQSExtraScripts</string>
<key>catalogPath</key>
<string>QSPresetModules/QSPresetScriptsGroup</string>
<key>icon</key>
<string>ScriptIcon</string>
<key>modificationDate</key>
<real>103923344.0</real>
<key>name</key>
<string>Scripts (Extra Scripts Plugin)</string>
<key>settings</key>
<dict>
<key>baseBundle</key>
<string>com.blacktree.Quicksilver.QSExtraScriptsPlugIn</string>
<key>folderDepth</key>
<integer>4</integer>
<key>folderTypes</key>
<array>
<string>public.script</string>
<string>public.plain-text</string>
<string>com.apple.applescript.script</string>
<string>public.executable</string>
</array>
<key>parser</key>
<string>QSDirectoryParser</string>
<key>path</key>
<string>Contents/Resources/ExtraScripts/</string>
<key>scanContents</key>
<integer>1</integer>
<key>skipItem</key>
<integer>1</integer>
</dict>
<key>source</key>
<string>QSFileSystemObjectSource</string>
</dict>
</array>
<key>QSRequirements</key>
<dict>
<key>version</key>
<string>4001</string>
</dict>
</dict>
</plist>