-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathconfig-sample.json
58 lines (55 loc) · 1.63 KB
/
config-sample.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
{
"bridge": {
"name": "Homebridge",
"username": "CC:22:3D:E3:CE:30",
"port": 51826,
"pin": "031-45-154"
},
"description": "This is an example configuration file with a boatload of different sensor examples.",
"platforms": [
{
"platform": "homebridge-plex-sensors.Plex",
"sensors": [
{
"name": "Plex Playing"
},
{
"name": "Movie Playing",
"types": ["movie"],
"players": ["Living Room"],
"users": ["MyUserName"],
"delayOff": 1000000
},
{
"name": "TV Playing",
"types": ["episode"],
"players": ["Living Room"],
"delayOff": 3000000
},
{
"name": "Horror Movie",
"types": ["movie"],
"genres": ["Horror", "Thriller"]
},
{
"name": "Music",
"types": ["track"],
"players": ["Bedroom"],
"ignorePauseResume": true
},
{
"name": "Breaking Bad is on",
"types": ["episode"],
"customFilters":
{
"Metadata.grandparentTitle": "Breaking Bad"
}
}
],
"debug": true,
"logSeenPlayersAndUsers": true
}
],
"accessories": [
]
}