From ec98a74dfdbdf378b9e2beb47a5af8219d2fa592 Mon Sep 17 00:00:00 2001 From: corben78 Date: Mon, 1 Sep 2025 12:12:50 +0200 Subject: [PATCH] [bugfix] Adjust steam path after changing getPath("home") to $XDG_DATA_HOME (#922) --- src/main/services/steam.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/services/steam.service.ts b/src/main/services/steam.service.ts index 54414ff5..358f9501 100644 --- a/src/main/services/steam.service.ts +++ b/src/main/services/steam.service.ts @@ -76,7 +76,7 @@ export class SteamService { switch (process.platform) { case "linux": - this.steamPath = path.join(app.getPath("home"), ".steam", "steam"); + this.steamPath = path.join(app.getPath("home"), "Steam"); return this.steamPath; case "win32": { const res = await list(["HKLM\\SOFTWARE\\Valve\\Steam", "HKLM\\SOFTWARE\\WOW6432Node\\Valve\\Steam"]);