I'm trying to set an electron icon for my app. I try this:
mainWindow = new BrowserWindow({ width: 1280, height: 768, icon: __dirname + "/logo.ico" });
But it doesn't works for me. I read in others questions (like this) that setting the icon property when creating the BrowserWindow only has an effect on Windows and Linux. But I'm currently on Linux, not in Mac OS.
How can I deal with this? Must the icon have a fixed size or something?
Thanks in advance!