-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharvis-workflow.json
More file actions
31 lines (31 loc) · 871 Bytes
/
arvis-workflow.json
File metadata and controls
31 lines (31 loc) · 871 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/jopemachine/arvis-extension-validator/master/workflow-schema.json",
"category": "",
"creator": "Sam Verschueren",
"version": "0.0.4",
"name": "arvis-fkill",
"readme": "",
"webAddress": "https://github.com/jopemachine/arvis-fkill",
"description": "Arvis workflow to fabulously search and kill processes",
"enabled": true,
"defaultIcon": "icon.png",
"commands": [
{
"type": "scriptFilter",
"command": "kill",
"title": "Search and kill processes",
"subtitle": "",
"scriptFilter": "node index.js \"{query}\"",
"runningSubtext": "Searching...",
"withspace": true,
"argType": "required",
"actions": [
{
"modifiers": "normal",
"type": "script",
"script": "node kill.js \"{query}\""
}
]
}
]
}