diff --git a/build/icon.ico b/build/icon.ico new file mode 100644 index 0000000..1101b21 Binary files /dev/null and b/build/icon.ico differ diff --git a/build/icon.png b/build/icon.png new file mode 100644 index 0000000..4a55c77 Binary files /dev/null and b/build/icon.png differ diff --git a/main.js b/main.js index bd9c586..f5eea35 100644 --- a/main.js +++ b/main.js @@ -11,6 +11,7 @@ function createWindow() { height: 820, minWidth: 1000, minHeight: 700, + icon: path.join(__dirname, 'docs', 'dekupai-logo.png'), // Custom app logo frame: false, // Sleek frameless design transparent: false, // Set to false to avoid rendering bugs on some Windows setups backgroundColor: '#0a0a0f', // Dark baseline background diff --git a/package.json b/package.json index 34cb91a..910f032 100644 --- a/package.json +++ b/package.json @@ -37,11 +37,13 @@ "!node_modules/**" ], "win": { - "target": "nsis" + "target": "nsis", + "icon": "build/icon.ico" }, "mac": { "target": "dmg", - "category": "public.app-category.graphics-design" + "category": "public.app-category.graphics-design", + "icon": "build/icon.png" } } } \ No newline at end of file