feat: create start menu shortcut on Windows

This commit is contained in:
Zamitto
2025-05-02 08:08:58 -03:00
parent f20314de57
commit a922d9a166
10 changed files with 57 additions and 29 deletions

View File

@@ -8,6 +8,14 @@ export const defaultDownloadsPath = SystemPath.getPath("downloads");
export const isStaging = import.meta.env.MAIN_VITE_API_URL.includes("staging");
export const windowsStartMenuPath = path.join(
SystemPath.getPath("appData"),
"Microsoft",
"Windows",
"Start Menu",
"Programs"
);
export const levelDatabasePath = path.join(
SystemPath.getPath("userData"),
`hydra-db${isStaging ? "-staging" : ""}`