-
Notifications
You must be signed in to change notification settings - Fork 10
/
config.json
57 lines (57 loc) · 1.66 KB
/
config.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
{
"features": {
"description": "Enable or disable features.",
"type": "object",
"collapsed": false,
"order": 1,
"properties": {
"logging": {
"title": "Enable logging",
"type": "boolean",
"order": 1,
"default": false
},
"multiWindowSupport": {
"title": "Allow player to play simultaneously in different windows (not recommended)",
"type": "boolean",
"order": 2,
"default": false
}
}
},
"controls": {
"description": "Adjust the behavior of some controls.",
"type": "object",
"collapsed": false,
"order": 2,
"properties": {
"skip": {
"title": "Fast forward and rewind in seconds (0 hides these controls)",
"type": "integer",
"order": 1,
"default": 15
}
}
},
"state": {
"title": "Internal state",
"description": "⚠ Changing these values manually may prevent atom-music from working properly. Only for debugging purposes.",
"type": "object",
"collapsed": true,
"order": 3,
"properties": {
"playing": {
"title": "Currently playing",
"type": "boolean",
"order": 1,
"default": false
},
"playerWindowId": {
"title": "Current window PID",
"type": "integer",
"order": 2,
"default": 0
}
}
}
}