mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-16 07:50:50 +08:00
11 lines
276 B
TypeScript
11 lines
276 B
TypeScript
import { isElectron } from '.';
|
|
import { handleShortcutAction } from './appShortcuts';
|
|
|
|
export function initShortcut() {
|
|
if (isElectron) {
|
|
window.electron.ipcRenderer.on('global-shortcut', async (_, action: string) => {
|
|
handleShortcutAction(action);
|
|
});
|
|
}
|
|
}
|