SystemTray
SystemTray used to create icons in the taskbar.
Supports Linux/Windows/MacOS platforms.
const tray = new SystemTray();tray.title = "My Deft App";tray.icon = "path/to/icon.png";// Bind click eventtray.bindActivate(() => { console.log("clicked");});// Set menustray.setMenus([ { id: "show", label: "Show", handler() { console.log("show menu is clicked"); } }, { id: "exit", label: "Exit", handler() { process.exit(0); } },]);