summaryrefslogtreecommitdiff
path: root/src/components/LaunchOptionInfo.tsx
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-24 11:16:09 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-24 11:16:09 -0400
commit59b2b7c9ab5f392008405178ba11dcd977e31927 (patch)
treea39f4534f84abb7a5c1d4832f4b4f00ecfc5fc18 /src/components/LaunchOptionInfo.tsx
parentd029ff81e6711201a63a9402076a819e189bbcdf (diff)
downloaddecky-lsfg-vk-59b2b7c9ab5f392008405178ba11dcd977e31927.tar.gz
decky-lsfg-vk-59b2b7c9ab5f392008405178ba11dcd977e31927.zip
cleanup
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>
- );
-}