mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-16 11:47:54 +01:00
desktop: fix app autostart in appimage (#4223)
This commit is contained in:
@@ -25,7 +25,11 @@ Type=Application
|
|||||||
Version=${app.getVersion()}
|
Version=${app.getVersion()}
|
||||||
Name=${app.getName()}
|
Name=${app.getName()}
|
||||||
Comment=${app.getName()} startup script
|
Comment=${app.getName()} startup script
|
||||||
Exec=${process.execPath}${hidden ? " --hidden" : ""}
|
Exec=${
|
||||||
|
process.env.APPIMAGE
|
||||||
|
? `${process.env.APPIMAGE}${hidden ? " --hidden" : ""}`
|
||||||
|
: `${process.execPath}${hidden ? " --hidden" : ""}`
|
||||||
|
}
|
||||||
StartupNotify=false
|
StartupNotify=false
|
||||||
Terminal=false`;
|
Terminal=false`;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user