summaryrefslogtreecommitdiff
path: root/src/components/UsageInstructions.tsx
diff options
context:
space:
mode:
authorJanleyx <242423638+Janleyx@users.noreply.github.com>2026-07-18 10:20:20 -0400
committerJanleyx <242423638+Janleyx@users.noreply.github.com>2026-07-18 10:20:20 -0400
commite205effa83dbbcb9c13f3f11a493a525e989d7b6 (patch)
tree9b05626daceb691cdfa2e5306274f0297306d84c /src/components/UsageInstructions.tsx
parent722ac0cf338d659e2d0553431285fbfb0cd978b5 (diff)
downloaddecky-lsfg-vk-e205effa83dbbcb9c13f3f11a493a525e989d7b6.tar.gz
decky-lsfg-vk-e205effa83dbbcb9c13f3f11a493a525e989d7b6.zip
preserve Armada game launch wrapper
Diffstat (limited to 'src/components/UsageInstructions.tsx')
-rw-r--r--src/components/UsageInstructions.tsx42
1 files changed, 40 insertions, 2 deletions
diff --git a/src/components/UsageInstructions.tsx b/src/components/UsageInstructions.tsx
index 5f032b8..02d0eb3 100644
--- a/src/components/UsageInstructions.tsx
+++ b/src/components/UsageInstructions.tsx
@@ -1,6 +1,31 @@
+import { useEffect, useState } from "react";
import { PanelSectionRow } from "@decky/ui";
+import { getLaunchOption } from "../api/lsfgApi";
export function UsageInstructions() {
+ const [launchOption, setLaunchOption] = useState("~/lsfg %command%");
+ const [launchExplanation, setLaunchExplanation] = useState(
+ "The LSFG wrapper configures frame generation before launching the game."
+ );
+
+ useEffect(() => {
+ let active = true;
+
+ getLaunchOption()
+ .then((result) => {
+ if (!active) return;
+ if (result.launch_option) setLaunchOption(result.launch_option);
+ if (result.explanation) setLaunchExplanation(result.explanation);
+ })
+ .catch(() => {
+ // Keep the standard launch option visible if the backend is unavailable.
+ });
+
+ return () => {
+ active = false;
+ };
+ }, []);
+
return (
<>
<PanelSectionRow>
@@ -47,7 +72,20 @@ export function UsageInstructions() {
textAlign: "center"
}}
>
- <strong>~/lsfg %command%</strong>
+ <strong>{launchOption}</strong>
+ </div>
+ </PanelSectionRow>
+
+ <PanelSectionRow>
+ <div
+ style={{
+ fontSize: "11px",
+ lineHeight: "1.3",
+ opacity: "0.7",
+ marginTop: "4px"
+ }}
+ >
+ {launchExplanation}
</div>
</PanelSectionRow>
@@ -60,7 +98,7 @@ export function UsageInstructions() {
marginTop: "8px"
}}
>
-The configuration is stored in ~/.config/lsfg-vk/conf.toml and hot-reloads while games are running.
+ The configuration is stored in ~/.config/lsfg-vk/conf.toml and hot-reloads while games are running.
</div>
</PanelSectionRow>
</>