-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
57 lines (48 loc) · 1.22 KB
/
index.js
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
53
54
55
56
57
const electron = require("electron"),
url = require("url"),
path = require("path");
const { app, Menu, BrowserWindow } = electron;
const { ipcMain } = electron;
let mainWin;
var onData = "";
app.on("ready", () => {
mainWin = new BrowserWindow({
icon: path.join(__dirname, "/assets/as.png"),
webPreferences: {
nodeIntegration: false,
},
width: 1920,
height: 1080,
options: {
fullscreen: true,
},
});
mainWin.loadURL(
url.format({
pathname: path.join(__dirname, "/views/index.html"),
protocol: "file:",
slashes: true,
})
);
mainWin.on("closed", function () {
mainWindow = null;
});
// mainWin.setMenu(null);
// mainWin.setFullScreen(true);
mainWin.maximize();
});
// Quit when all windows are closed.
app.on("window-all-closed", function () {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== "darwin") {
app.quit();
}
});
app.on("activate", function () {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow();
}
});