Merge pull request #652 from LiamillionSS/bugfix/452

[bugfix-452] fix to "launch game when steam is not running" on linux
This commit is contained in:
MathieuG-P
2024-11-12 15:40:29 +01:00
committed by GitHub
+4 -2
View File
@@ -13,7 +13,9 @@ const { list } = (execOnOs({ win32: () => require("regedit-rs") }, true) ?? {})
export class SteamService {
private static readonly PROCESS_NAME = "steam";
private static readonly PROCESS_NAME: string = process.platform === "linux"
? "steam-runtime-launcher-service"
: "steam";
private static instance: SteamService;
@@ -116,7 +118,7 @@ export class SteamService {
public async openSteam(): Promise<void> {
await shell.openPath("steam://open/games");
await shell.openExternal("steam://open/games");
return new Promise((resolve, reject) => {
// Every 3 seconds check if steam is running