-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharvis-workflow.json
37 lines (37 loc) · 977 Bytes
/
arvis-workflow.json
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
{
"$schema": "https://raw.githubusercontent.com/jopemachine/arvis-extension-validator/master/workflow-schema.json",
"defaultIcon": "icon.png",
"category": "Tools",
"creator": "Conan Lau",
"version": "0.0.2",
"description": "Show disk usage in Arvis",
"name": "arvis-diskusage",
"readme": "",
"webAddress": "https://github.com/lcc19941214/arvis-diskusage",
"enabled": true,
"commands": [
{
"type": "scriptFilter",
"command": "df",
"title": "Show disk usage",
"subtitle": "",
"scriptFilter": "node index.js \"{query}\"",
"runningSubtext": "searching...",
"withspace": true,
"argType": "optional",
"actions": [
{
"modifiers": "normal",
"type": "clipboard",
"text": "{query}"
},
{
"modifiers": "normal",
"type": "notification",
"title": "disk usage copied.",
"text": "{query}"
}
]
}
]
}