aboutsummaryrefslogtreecommitdiff
path: root/src/index.js
blob: ebea48f6ad6a2c1fba04555266d70d66d52b3361 (plain)
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
const path = require("path");
const { app, BrowserWindow } = require("electron");

function start() {
	win = new BrowserWindow({
		width: 500,
		height: 115,
		show: false,
		title: "Viper",
		webPreferences: {
			nodeIntegration: true,
			contextIsolation: false,
		},
	}); win.openDevTools()

	win.removeMenu();
	win.loadFile(__dirname + "/app/index.html");
	win.webContents.once("dom-ready", () => {win.show()});
}

app.on("ready", () => {
	process.chdir(app.getPath("appData"));
	app.setPath("userData", path.join(app.getPath("cache"), app.name));
	start();
})