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

module.exports = new Store({
	defaults: {
		debugEnable: false,
		menuEnable: true,
		configCookieOverwrite: '',
        discordRPCEnable: true,
		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
		}
	}
});