This repository has been archived on 2025-01-09. You can view files and clone it, but cannot push or open issues or pull requests.

45 lines
946 B
JavaScript
Raw Permalink Normal View History

2025-01-09 18:30:49 +08:00
const { app, BrowserWindow, globalShortcut } = require('electron')
const createWindow = () => {
let mainWin = new BrowserWindow({
width: 800,
height: 400,
show: false,
webPreferences: {
enableRemoteModule: true,
nodeIntegration: true
}
})
mainWin.loadFile('index.html')
mainWin.on('ready-to-show', mainWin.show)
mainWin.on('close', () => {
mainWin = null
})
}
app.on('ready', createWindow)
app.on('ready', () => {
// 注册
let ret = globalShortcut.register('ctrl + q', () => {
console.log("快捷键注册成功")
})
if (!ret) {
console.log('注册失败')
}
console.log(globalShortcut.isRegistered('ctrl + q'))
console.log(ret, '~~~~~')
})
app.on('will-quit', () => {
globalShortcut.unregister('ctrl + q')
globalShortcut.unregisterAll()
})
app.on('window-all-closed', app.quit)