Skip to content

Instantly share code, notes, and snippets.

@voznik
Created September 1, 2021 19:32
Show Gist options
  • Save voznik/673ce606b0470cd741f38c6b360baf0b to your computer and use it in GitHub Desktop.
Save voznik/673ce606b0470cd741f38c6b360baf0b to your computer and use it in GitHub Desktop.
electron devtools globalShortcut
import { remote } from 'electron'
remote.globalShortcut.register('CommandOrControl+Shift+K', () => {
remote.BrowserWindow.getFocusedWindow().webContents.openDevTools()
})
window.addEventListener('beforeunload', () => {
remote.globalShortcut.unregisterAll()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment