How do I create a new window in Electron when specific keys are pressed only when the electron app window is in focus?
And yes there are a lot of solutions posted but none have worked at all, here is all the things I've tried so far
window.addEventListener as well as document.addEventListener in renderer.js, globalShortcuts work but of course it's "global" so it'll enact out even when the electron app is out of focus, tried mousetrap to work around this yet still to no avail... none of it works.