diff --git a/README.md b/README.md index 28a72d0..d895496 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,9 @@ Familiar React application structure, just with `electron` folder on the top :wi │ ├── icon.icns Icon for the application on macOS │ ├── icon.ico Icon for the application │ ├── installerIcon.ico Icon for the application installer -│ └── uninstallerIcon.ico Icon for the application uninstaller +│ ├── uninstallerIcon.ico Icon for the application uninstaller +| └── iconset +| └── 256x256.png Icon for the application on Linux │ ├── release Generated after production build, contains executables │ └── {version} diff --git a/electron-builder.json5 b/electron-builder.json5 index 3da0db0..2be3da4 100644 --- a/electron-builder.json5 +++ b/electron-builder.json5 @@ -31,7 +31,8 @@ artifactName: "${productName}-Mac-${version}-Installer.${ext}", }, linux: { - target: ["AppImage"], + icon: "electron/resources/iconset", + target: ["AppImage", "deb"], artifactName: "${productName}-Linux-${version}.${ext}", }, } diff --git a/electron/resources/iconset/256x256.png b/electron/resources/iconset/256x256.png new file mode 100644 index 0000000..4526115 Binary files /dev/null and b/electron/resources/iconset/256x256.png differ