From 19e5aefa2f41ebd4389bf27136adacf3e75d3502 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Tue, 19 May 2026 14:26:39 -0400 Subject: feat: add fsr4 runtime manifests --- src/components/ClipboardCommands.tsx | 33 ++++++++++++++++++++++++++++----- 1 file changed, 28 insertions(+), 5 deletions(-) (limited to 'src/components/ClipboardCommands.tsx') diff --git a/src/components/ClipboardCommands.tsx b/src/components/ClipboardCommands.tsx index e1f6ef9..124423e 100644 --- a/src/components/ClipboardCommands.tsx +++ b/src/components/ClipboardCommands.tsx @@ -3,9 +3,16 @@ import { SmartClipboardButton } from "./SmartClipboardButton"; interface ClipboardCommandsProps { pathExists: boolean | null; dllName: string; + manualModeEnabled?: boolean; + showLaunchOptions?: boolean; } -export function ClipboardCommands({ pathExists, dllName }: ClipboardCommandsProps) { +export function ClipboardCommands({ + pathExists, + dllName, + manualModeEnabled = false, + showLaunchOptions = true, +}: ClipboardCommandsProps) { if (pathExists !== true) return null; const launchCmd = @@ -14,9 +21,25 @@ export function ClipboardCommands({ pathExists, dllName }: ClipboardCommandsProp : `WINEDLLOVERRIDES=${dllName.replace(".dll", "")}=n,b SteamDeck=0 %command%`; return ( - + <> + {showLaunchOptions ? ( + + ) : null} + {manualModeEnabled ? ( + <> + + + + ) : null} + ); } -- cgit v1.2.3