diff --git a/public/titleicon.svg b/public/titleicon.svg new file mode 100644 index 00000000..f88a3088 --- /dev/null +++ b/public/titleicon.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main.app.js b/src/main.app.js index aff30501..b1b606db 100644 --- a/src/main.app.js +++ b/src/main.app.js @@ -1,9 +1,11 @@ import { Titlebar, Color } from 'custom-electron-titlebar' + // Only show custom menubar for Windows or Linux if ((process.platform !== 'darwin')) { new Titlebar({ - backgroundColor: Color.fromHex('#c5247f') + backgroundColor: Color.fromHex('#c5247f'), + icon: './titleicon.svg' }); }