blob: 8af59e14c83f270c34c507633f6bc9e66b289b51 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- electron/default_app/default_app.ts.orig 2024-10-09 13:53:06 UTC
+++ electron/default_app/default_app.ts
@@ -61,7 +61,7 @@ async function createWindow (backgroundColor?: string)
show: false
};
- if (process.platform === 'linux') {
+ if (process.platform === 'linux' || process.platform === 'freebsd') {
options.icon = url.fileURLToPath(new URL('icon.png', import.meta.url));
}
|