Skip to content

Commit

Permalink
added path for icon in desktop entries for .deb package
Browse files Browse the repository at this point in the history
  • Loading branch information
qlrd committed Jan 11, 2024
1 parent 0c9de12 commit 425c658
Showing 1 changed file with 22 additions and 6 deletions.
28 changes: 22 additions & 6 deletions electron-builder.json5
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,30 @@
"linux": {
"category": "Utility",
"icon": "public/icon.png",
"desktop": {
"Icon": "org.selfcustody.krux-installer",
"Keywords": "electron;krux;vite;vuetify;vue3;vue",
"Terminal": false
},
"target": [ "AppImage", "deb", "rpm" ]
"target": [
{
"target": "AppImage"
},
{
"target": "deb",
"desktop": {
"Icon": "/usr/share/icons/hicolor/0x0/apps/krux-installer.png",
"Keywords": "electron;krux;vite;vuetify;vue3;vue",
"Terminal": false
}
},
{
"target": "rpm",
"desktop": {
"Icon": "/usr/share/icons/hicolor/0x0/apps/krux-installer.png",
"Keywords": "electron;krux;vite;vuetify;vue3;vue",
"Terminal": false
}
}
]
},
"win": {
"icon": "public/icon.png",
"target": [
{
"target": "nsis",
Expand Down

0 comments on commit 425c658

Please sign in to comment.