-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
37 lines (31 loc) · 881 Bytes
/
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
const path = require('path')
const electron = require('electron')
const { app, BrowserWindow } = require('electron')
const { autoUpdater } = require('electron-updater')
function createWindow() {
const { width } = electron.screen.getPrimaryDisplay().workAreaSize
const mainWindow = new BrowserWindow({
width: 1000,
height: 600,
transparent: true,
x: width - 1000,
y: 23,
frame: false,
icon: "./assets/blitzer-logo.ico",
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true,
contextIsolation: false
}
})
autoUpdater.checkForUpdatesAndNotify()
mainWindow.loadFile('./src/html/overlay.html')
mainWindow.setAlwaysOnTop(true, 'floating')
mainWindow.setVisibleOnAllWorkspaces(true)
}
app.whenReady().then(() => {
createWindow()
app.on('activate', function () {
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})