forked from Erackron/ulauncher-ssh
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
57 lines (57 loc) · 1.27 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
54
55
56
57
{
"required_api_version": "^2.0.0",
"name": "SSH Launcher",
"description": "Launch SSH connections.",
"developer_name": "Jonas Bendlin",
"icon": "images/icon.png",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "ssh_launcher_kw",
"type": "keyword",
"name": "SSH Launcher",
"description": "",
"default_value": "ssh"
},
{
"id": "ssh_launcher_terminal",
"type": "input",
"name": "Terminal",
"description": "The Terminal to launch the connections in.",
"default_value": "xterm"
},
{
"id": "ssh_launcher_terminal_arg",
"type": "input",
"name": "Terminal arg",
"description": "Terminal arg to exec commands.",
"default_value": "-e"
},
{
"id": "ssh_launcher_terminal_cmd",
"type": "input",
"name": "Terminal cmd",
"description": "The command to start the terminal with. %SHELL equals the env var $SHELL and %CONN the selected connection.",
"default_value": "%SHELL -c 'ssh \"%CONN\"';%SHELL"
},
{
"id": "ssh_launcher_use_known_hosts",
"type": "select",
"name": "Use known_hosts",
"description": "Parse the ~/.ssh/known_hosts file for more suggestions.",
"options": [
{
"value": "True",
"text": "Yes"
},
{
"value": "False",
"text": "No"
}
],
"default_value": "True"
}
]
}