-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
46 lines (35 loc) · 1011 Bytes
/
main.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
"use strict";
const electron = require('electron');
const path = require('path');
const app = electron.app;
const BrowserWindow = electron.BrowserWindow;
const globalShortcut = electron.globalShortcut;
const config = require('./modules/config-setup');
config.setup();
let mainWindow = null;
app.on('ready', ()=>{
mainWindow = new BrowserWindow({
frame: false,
resizable: false,
height: 606,
width: 806
});
mainWindow.loadURL('file://' + __dirname + "/app/index.html");
mainWindow.on('closed', ()=>{
mainWindow = null;
});
const shortcuts = require(path.join(__dirname, 'modules', 'globalShortcuts'))(mainWindow);
shortcuts.forEach((ob)=>{
globalShortcut.register(ob.key, ob.cb);
});
require(path.join(__dirname, 'modules', 'window-interfacer'))(mainWindow);
});
app.on('window-all-closed', ()=> {
if (process.platform !== 'darwin') {
app.quit();
}
globalShortcut.unregisterAll();
});
app.on('will-quit', ()=>{
globalShortcut.unregisterAll();
});