13 lines
		
	
	
	
		
			382 B
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			382 B
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const { app, BrowserWindow } = require('electron/main')
 | |
| 
 | |
| app.whenReady().then(() => {
 | |
|   const win = new BrowserWindow({ width: 800, height: 600 })
 | |
| 
 | |
|   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()
 | |
|     }
 | |
|   })
 | |
| })
 | 
