Electron Menubar Icon Size

1.1k Views Asked by At

I'm working on a desktop time management application using electron. And I'd like to put a counting down timer on the menu bar. But right now the icon size needs to be 20*20. Is it possible to change the icon size in electron?

1

There are 1 best solutions below

5
On

As seen in this Github link you can use nativeImage command:

const nativeImage = require('electron').nativeImage

...

{
    label: 'Open-Source',
    icon: nativeImage.createFromPath(__dirname + '/resources/icons/github.png').resize({width:16}),
    click: async () => {
        //
    }
}

You can create images with numbers then make a logic to set icons after X seconds and also use the nativeImage function to resize it with your mentioned size.