Untemi
Untemi
### Describe the bug It would be beneficial to use systemwide electron for increased security and potentially better performance. Something like the use of [asar](https://github.com/electron/asar) for packaging. ### To Reproduce...
### Describe the bug When the app is launched the Esc key is not usable outside it which is frustrating especially since I tend to use Neovim for code editing...
### Fixing [ #241](https://github.com/hmlendea/gfn-electron/issues/241) but required removing for causing infinite recursion : ``` globalShortcut.register('Esc', async () => { var window = BrowserWindow.getAllWindows()[0]; window.webContents.sendInputEvent({ type: 'keyDown', keyCode: 'Esc' }); window.webContents.sendInputEvent({ type:...