November 2019
Beginner
436 pages
8h 52m
English
Now that the minimal system tray menu is up and running, let's provide keyboard support. You can use any key combination of your choice; for example, try Cmd + Alt + Shift + S for macOS or Ctrl + Alt + Shift + S for Linux and Windows. Let's get started:
const { app, BrowserWindow, Menu, Tray, globalShortcut } = require('electron');
function createTray() { const iconPath = path.join(__dirname, 'assets/icon.png'); tray = new Tray(iconPath); const contextMenu = Menu.buildFromTemplate([ ...Read now
Unlock full access