29 lines
572 B
JavaScript
29 lines
572 B
JavaScript
|
const { app, BrowserWindow, globalShortcut } = require('electron')
|
||
|
|
||
|
function createWindow () {
|
||
|
const win = new BrowserWindow({
|
||
|
width: 800,
|
||
|
height: 600,
|
||
|
})
|
||
|
|
||
|
win.loadFile('index.html')
|
||
|
}
|
||
|
|
||
|
app.whenReady().then(() => {
|
||
|
globalShortcut.register('Alt+CommandOrControl+I', () => {
|
||
|
console.log('Electron loves global shortcuts!')
|
||
|
})
|
||
|
}).then(createWindow)
|
||
|
|
||
|
app.on('window-all-closed', () => {
|
||
|
if (process.platform !== 'darwin') {
|
||
|
app.quit()
|
||
|
}
|
||
|
})
|
||
|
|
||
|
app.on('activate', () => {
|
||
|
if (BrowserWindow.getAllWindows().length === 0) {
|
||
|
createWindow()
|
||
|
}
|
||
|
})
|