gpt4 book ai didi

node.js - 如何使用快捷键打开 Electron 应用程序?

转载 作者:行者123 更新时间:2023-12-03 12:23:52 25 4
gpt4 key购买 nike

我有一个在Mac OS上运行的 Electron 应用程序,但是一旦将该应用程序移至Applications,那么我希望有一个快捷键可以直接启动而无需每次都双击。

像Command + KEY [任意键组合]
即使这也应该适用于Windows

最佳答案

即使应用程序没有键盘焦点,也可以使用 Electron 的globalShortcut module检测键盘事件。

在此示例中,应用程序在按下Control+XCommand+X时会打开浏览器窗口,并在关闭窗口时阻止退出,以继续在后台监听快捷方式。

// require Electron
const { app, BrowserWindow, globalShortcut } = require('electron')

function createWindow () {
// Create the browser window.
let win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true
}
})

// and load the index.html of the app.
win.loadFile('index.html')
}

// when app is ready register a global shortcut
// that calls createWindow function
app.on('ready', () => {
globalShortcut.register('CommandOrControl+X', createWindow)
})

// do not quit when all windows are closed
// and continue running on background to listen
// for shortcuts
app.on('window-all-closed', (e) => {
e.preventDefault()
e.returnValue = false
})

如果要在启动时启动应用程序,则可以使用 this package

关于node.js - 如何使用快捷键打开 Electron 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38553222/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com