diff --git a/docs/assets/linux-missing-icons.png b/docs/assets/linux-missing-icons.png new file mode 100644 index 000000000..e015445ce Binary files /dev/null and b/docs/assets/linux-missing-icons.png differ diff --git a/docs/wiki/Linux.md b/docs/wiki/Linux.md index cc0ca3129..0ab1eb25d 100644 --- a/docs/wiki/Linux.md +++ b/docs/wiki/Linux.md @@ -47,6 +47,18 @@ Once Proton is installed, when you open your BSManager application for the first # Troubleshooting +## Missing Icons in game + +
+
+
+ NOTE: "?" are missing unicode icons
+
diff --git a/src/main/services/bs-version-lib.service.ts b/src/main/services/bs-version-lib.service.ts index a8ca4ce82..70c16e9c0 100644 --- a/src/main/services/bs-version-lib.service.ts +++ b/src/main/services/bs-version-lib.service.ts @@ -42,7 +42,7 @@ export class BSVersionLibService { private async shouldLoadFromConfig(): Promise{ // Some special cases of readonly memory installations - return IS_FLATPAK || this.linuxService.isNixOS(); + return process.platform === "linux" && (IS_FLATPAK || this.linuxService.isNixOS()); } private async getLocalVersions(): Promise {