SystemTray 任务栏图标
SystemTray用于创建任务栏右下角图标。
支持Linux/Windows/MacOS平台。
const tray = new SystemTray();tray.title = "My Deft App";tray.icon = "path/to/icon.png";// 绑定左键点击事件tray.bindActivate(() => { console.log("clicked");});// 设置菜单tray.setMenus([ { id: "show", label: "Show", handler() { console.log("show menu is clicked"); } }, { id: "exit", label: "Exit", handler() { process.exit(0); } },]);