A Electron's globalShortcut replacement based on uiohook-napi.
Because Electron's globalShortcut disables the default behavior.
First, install it:
npm i @hcfy/uiohook-shoutcutThen replace Electron's gobalShortcut to @hcfy/uiohook-shoutcut:
import { globalShortcut } from 'electron'
// replace to
import * as globalShortcut from '@hcfy/uiohook-shoutcut'Done.