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
|
'use strict';
const Store = require('electron-store');
// You can set these values pretty easily in the index.js, you just need to add the corresponding data types to the setActivity function.
// You can also find a complete list of all of the types and what they do here; https://github.com/8cy/pydii/blob/master/README.MD#config-explained
module.exports = new Store({
defaults: {
debugEnable: false,
menuEnable: true,
discordRPC: {
clientId: "722389325483999243",
timeEnable: true,
RPC: {
details: "Typing on Monkey Type",
state: "Desktop Application Beta",
startTimestamp: 0,
endTimestamp: 0,
smallImageText: "",
smallImageKey: "",
largeImageText: "Monkey Type",
largeImageKey: "icon",
refreshTime: 15,
instance: true,
match: "",
party: "",
partyMax: "",
join: "",
spectate: ""
}
},
dontTouch: {
updateCounter: 0
}
}
});
|