codecentric / gopass-ui

gopass CLI + UI = visual cross-platform password manager for teams
MIT License
248 stars 19 forks source link

new tray icon #39

Closed ruettenm closed 4 years ago

ruettenm commented 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)
}