Closed ruettenm closed 4 years ago
On OSX, the trend in menu bar icons is monochrome.
code to support dark and light mode:
const getTrayImage = () => { const icon = nativeTheme.shouldUseDarkColors ? 'icon-dark-mode.png' : 'icon.png' return path.join(__dirname, 'assets', icon) }
code to support dark and light mode: