-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
53 lines (53 loc) · 1.49 KB
/
manifest.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"required_api_version": "^2.0.0",
"name": "Terminal Runner",
"description": "An extension that let's you run commands on a gui terminal",
"developer_name": "lighttigerXIV",
"icon": "images/icon.png",
"options": {
"query_debounce": 0.05
},
"preferences": [
{
"id": "kw",
"type": "keyword",
"name": "Run",
"description": "",
"default_value": ">"
},
{
"id": "term",
"type": "text",
"name": "Terminal",
"description": "The terminal that will be used",
"default_value": "/bin/gnome-terminal"
},
{
"id": "exec",
"type": "text",
"name": "Executing Parameter",
"description": "The parameter your terminal uses to execute commands",
"default_value": "--"
},
{
"id": "shell",
"type": "select",
"name": "Shell",
"default_value": "others",
"options": [
{"text": "Bash / Zsh", "value": "others"},
{"text": "Fish", "value": "fish"}
]
},
{
"id": "icon",
"type": "select",
"name": "Icon style",
"default_value": "black",
"options": [
{"text": "Black icon", "value": "black"},
{"text": "White icon", "value": "white"}
]
}
]
}