mirror of
https://github.com/heyman/heynote.git
synced 2024-11-24 17:03:19 +01:00
Fix icon for nix systems
This commit is contained in:
parent
ca38f9f932
commit
60f27095e1
@ -106,9 +106,17 @@ async function createWindow() {
|
||||
}
|
||||
}
|
||||
|
||||
const pngSystems: NodeJS.Platform[] = ["linux", "freebsd", "openbsd", "netbsd"]
|
||||
const icon = join(
|
||||
process.env.PUBLIC,
|
||||
pngSystems.includes(process.platform)
|
||||
? "favicon-linux.png"
|
||||
: "favicon.ico",
|
||||
)
|
||||
|
||||
win = new BrowserWindow(Object.assign({
|
||||
title: 'heynote',
|
||||
icon: join(process.env.PUBLIC, 'favicon.ico'),
|
||||
icon,
|
||||
backgroundColor: nativeTheme.shouldUseDarkColors ? '#262B37' : '#FFFFFF',
|
||||
//titleBarStyle: 'customButtonsOnHover',
|
||||
autoHideMenuBar: true,
|
||||
|
Loading…
Reference in New Issue
Block a user