14 lines
420 B
JavaScript
14 lines
420 B
JavaScript
|
const { app, BrowserWindow } = require('electron')
|
||
|
|
||
|
app.whenReady().then(() => {
|
||
|
const win = new BrowserWindow({ width: 800, height: 600, webPreferences: { nodeIntegration: true } })
|
||
|
|
||
|
win.loadFile('index.html')
|
||
|
win.webContents.on('before-input-event', (event, input) => {
|
||
|
if (input.control && input.key.toLowerCase() === 'i') {
|
||
|
console.log('Pressed Control+I')
|
||
|
event.preventDefault()
|
||
|
}
|
||
|
})
|
||
|
})
|