summaryrefslogtreecommitdiff
path: root/src/components/LaunchOptionInfo.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/LaunchOptionInfo.tsx')
-rw-r--r--src/components/LaunchOptionInfo.tsx25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/components/LaunchOptionInfo.tsx b/src/components/LaunchOptionInfo.tsx
deleted file mode 100644
index 298c45a..0000000
--- a/src/components/LaunchOptionInfo.tsx
+++ /dev/null
@@ -1,25 +0,0 @@
-import { PanelSectionRow, Field } from "@decky/ui";
-
-export function LaunchOptionInfo() {
- return (
- <PanelSectionRow>
- <Field
- bottomSeparator="none"
- label="Setup Instructions"
- description={
- <>
- <div>For each game where you want to use lsfg-vk:</div>
- <div style={{ marginTop: "8px" }}>
- 1. Right-click the game in Steam → Properties<br/>
- 2. Add this to Launch Options: <code>LSFG_PROCESS=decky-lsfg-vk %command%</code><br/>
- 3. Or use the "Copy Launch Option" button above
- </div>
- <div style={{ marginTop: "8px", fontStyle: "italic" }}>
- This temporary solution allows hot-reloading while keeping you on the latest lsfg-vk version.
- </div>
- </>
- }
- />
- </PanelSectionRow>
- );
-}