-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.json
52 lines (52 loc) · 1.04 KB
/
config.example.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
{
"clientId": "CLIENT_ID",
"rich_presence": {
"details": {
"text": "Project: Discord Rich Presence",
"show": true
},
"state": {
"text": "In Development",
"show": true
},
"assets": {
"largeImage": {
"text": "Project Logo",
"key": "project_logo",
"show": true
},
"smallImage": {
"text": "Developer Icon",
"key": "developer_icon",
"show": true
}
},
"buttons": {
"primary": {
"labelText": "GitHub",
"redirectUrl": "https://github.com/smartertoby/discord-rich-presence",
"show": true
},
"secondary": {
"labelText": "Learn More",
"redirectUrl": "",
"show": false
}
},
"timestamps": {
"mode": "elapsed",
"autoStart": true,
"startTimestamp": 1,
"endTimestamp": 1703350446,
"show": true
},
"party": {
"id": "123123",
"size": {
"currentSize": 1,
"maxSize": 2
},
"show": false
}
}
}