mirror of https://github.com/electron/electron
29 lines
576 B
JavaScript
29 lines
576 B
JavaScript
const { app, BrowserWindow, globalShortcut } = require('electron/main')
|
|
|
|
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()
|
|
}
|
|
})
|