-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 1.1 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
{
"required_api_version": "^2.0.0",
"name": "Music player controller",
"description": "Controll Music Players using ULauncher",
"developer_name": "Dankni95",
"icon": "images/icon.png",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "playerctl",
"type": "keyword",
"name": "Music player",
"description": "Extension keyword",
"default_value": "m"
},
{
"id": "change_icon_theme",
"type": "select",
"name": "Change icon theme",
"description": "Icon theme color",
"default_value": true,
"options": [
{ "value": true, "text": "Dark" },
{ "value": false, "text": "Light" }
]
},
{
"id": "player_volume",
"type": "select",
"name": "EXPERIMENTAL: Player volume control",
"description": "Control players volume, by default global volume is controlled. Please visit github for more information!",
"default_value": false,
"options": [
{ "value": false, "text": "Global volume" },
{ "value": true, "text": "Global and player" }
]
}
]
}