mirror of
https://github.com/imsyy/SPlayer.git
synced 2025-11-25 11:29:26 +08:00
15 lines
302 B
JavaScript
15 lines
302 B
JavaScript
|
|
import { globalShortcut } from "electron";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 注册全局快捷键
|
||
|
|
* @param {BrowserWindow} win - 程序窗口
|
||
|
|
*/
|
||
|
|
const createGlobalShortcut = (win) => {
|
||
|
|
// 刷新程序
|
||
|
|
globalShortcut.register("CommandOrControl+R", () => {
|
||
|
|
win?.reload();
|
||
|
|
});
|
||
|
|
};
|
||
|
|
|
||
|
|
export default createGlobalShortcut;
|