This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { BrowserWindow, Tray, Menu, app } = require('electron'); | |
// possible macOS tray bug identified in the electron core | |
let mainWindow; | |
let tray; | |
const startApp = () => { | |
mainWindow = new BrowserWindow({}); |