import { PanelSectionRow } from "@decky/ui"; interface UsageInstructionsProps { multiplier: number; } export function UsageInstructions({ multiplier }: UsageInstructionsProps) { return (
Usage Instructions:
Option 1: Use the lsfg script (recommended):
~/lsfg %COMMAND%
Option 2: Manual environment variables:
ENABLE_LSFG=1 LSFG_MULTIPLIER={multiplier} %COMMAND%
The lsfg script uses your current configuration settings.
• ENABLE_LSFG=1 - Enables frame generation
• LSFG_MULTIPLIER=2-4 - FPS multiplier (start with 2)
• LSFG_FLOW_SCALE=0.25-1.0 - Flow scale (for performance)
• LSFG_HDR=1 - HDR mode (only if using HDR)
• MESA_VK_WSI_PRESENT_MODE=immediate - Disable vsync
); }