summaryrefslogtreecommitdiff
path: root/config.js
blob: bc8359f98486b7e8352b0119a29d9961d9d20093 (plain) (blame)
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
'use strict';
const Store = require('electron-store');

module.exports = new Store({
	defaults: {
		debugEnable: false,
		menuEnable: true,
		configCookieOverwrite: "",
		discordRPC: {
			clientId: "722389325483999243",
			RPC: {
				details: "Typing on Monkey Type",
				state: "Desktop Application Beta",
				smallImageText: "",
				smallImageKey: "",
				largeImageText: "Monkey Type",
				largeImageKey: "icon",
				refreshTime: 15,
			}
		},
		dontTouch: {
			updateCounter: 0
		}
	}
});