-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
58 lines (58 loc) · 1.84 KB
/
schema.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
58
{
"settings": {
"page_title": "Virtual AV Deck",
"icon_size": "6em",
"show_tooltips": true
},
"dashboard_items": [
{
"name": "Global Mute",
"id": "e603d11b-db01-44cd-a270-256f40cd341e",
"enabled": true,
"desc": "Mute default sink and source",
"icon": "mdi:volume-high",
"activated_icon": "mdi:volume-mute",
"activated_color": "#1969f4",
"action": {
"type": "command",
"toggle": true,
"data": {
"command": "pactl set-sink-mute @DEFAULT_SINK@ toggle && pactl set-source-mute @DEFAULT_SOURCE@ toggle"
}
}
},
{
"name": "Mute Mic",
"id": "e603d11b-dd01-44cd-a270-256f40cd341e",
"enabled": true,
"desc": "Mute default source",
"icon": "mdi:microphone",
"activated_icon": "mdi:microphone-off",
"activated_color": "#1969f4",
"action": {
"type": "command",
"toggle": true,
"data": {
"command": "pactl set-source-mute @DEFAULT_SOURCE@ toggle"
}
}
},
{
"name": "GitHub",
"id": "e603d11b-dc01-44cd-a270-256f40cd341e",
"enabled": false,
"desc": "Open GitHub",
"icon": "skill-icons:github-dark",
"activated_icon": "skill-icons:github-dark",
"activated_color": "transparent",
"action": {
"type": "uri",
"toggle": false,
"data": {
"uri": "https://github.com/yuckdevchan/virtual-av-deck",
"handler": "system"
}
}
}
]
}