-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (35 loc) · 1.06 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
{
"required_api_version": "^2.0.0",
"name": "tldr.sh",
"description": "Browse tldr.sh pages and copy commands to the clipboard.",
"developer_name": "dhelmr",
"icon": "icons/ext_icon.svg",
"preferences": [
{
"id": "keyword",
"type": "keyword",
"name": "tldr",
"default_value": "tldr"
},
{
"id": "max_search_result_size",
"type": "select",
"name": "Maximum number of search results",
"default_value": "10",
"options": ["3","4","5","6","7","8","9","10","11","12"]
},
{
"id": "update_startup",
"type": "select",
"name": "Update the tldr-pages cache on Ulauncher's startup",
"default_value": "Always",
"options": ["Always", "Never"]
},
{
"id": "cache_dir",
"type": "input",
"name": "Path where the tldr-pages git repository is stored",
"default_value": "~/.cache/tldr-python"
}
]
}