import { useState, useEffect } from "react"; import { PanelSection, PanelSectionRow, ButtonItem, DropdownItem } from "@decky/ui"; import { definePlugin, callable } from "@decky/api"; import { RiAiGenerate } from "react-icons/ri"; const runInstallFGMod = callable< [], { status: string; message?: string; output?: string } >("run_install_fgmod"); const runUninstallFGMod = callable< [], { status: string; message?: string; output?: string } >("run_uninstall_fgmod"); const checkFGModPath = callable< [], { exists: boolean } >("check_fgmod_path"); const listInstalledGames = callable< [], { status: string; games: { appid: string; name: string }[] } >("list_installed_games"); function FGModInstallerSection() { const [installing, setInstalling] = useState(false); const [uninstalling, setUninstalling] = useState(false); const [installResult, setInstallResult] = useState<{ status: string; output?: string; message?: string; } | null>(null); const [uninstallResult, setUninstallResult] = useState<{ status: string; output?: string; message?: string; } | null>(null); const [pathExists, setPathExists] = useState(null); useEffect(() => { const checkPath = async () => { const result = await checkFGModPath(); setPathExists(result.exists); }; checkPath(); // Initial check const intervalId = setInterval(checkPath, 3000); // Check every 3 seconds return () => clearInterval(intervalId); // Cleanup interval on component unmount }, []); useEffect(() => { if (installResult) { const timer = setTimeout(() => { setInstallResult(null); }, 5000); return () => clearTimeout(timer); } return () => {}; // Ensure a cleanup function is always returned }, [installResult]); useEffect(() => { if (uninstallResult) { const timer = setTimeout(() => { setUninstallResult(null); }, 5000); return () => clearTimeout(timer); } return () => {}; }, [uninstallResult]); const handleInstallClick = async () => { setInstalling(true); const result = await runInstallFGMod(); setInstalling(false); setInstallResult(result); }; const handleUninstallClick = async () => { setUninstalling(true); const result = await runUninstallFGMod(); setUninstalling(false); setUninstallResult(result); }; return ( {pathExists !== null && (
{pathExists ? "Mod Is Installed" : "Mod Not Installed"}
)} {pathExists === false && ( {installing ? "Installing..." : "Install FG Mod"} )} {pathExists === true && ( {uninstalling ? "Uninstalling..." : "Uninstall FG Mod"} )} {installResult && (
Status:{" "} {installResult.status === "success" ? "Success" : "Error"}
{installResult.output && ( <> Output:
{installResult.output}
)} {installResult.message && ( <> Error: {installResult.message} )}
)} {uninstallResult && (
Status:{" "} {uninstallResult.status === "success" ? "Success" : "Error"}
{uninstallResult.output && ( <> Output:
{uninstallResult.output}
)} {uninstallResult.message && ( <> Error: {uninstallResult.message} )}
)}
Once installed, patch a games below to replace DLSS upscale and frame gen options with FSR 3 equivalents. * NON STEAM GAMES, GAMES WITH LAUNCHERS, AND DX11 OR BELOW NOT SUPPORTED.
); } function InstalledGamesSection() { const [games, setGames] = useState<{ appid: number; name: string }[]>([]); const [selectedGame, setSelectedGame] = useState<{ appid: number; name: string } | null>(null); const [result, setResult] = useState(''); useEffect(() => { const fetchGames = async () => { try { const response = await listInstalledGames(); if (response.status === "success") { const sortedGames = [...response.games] .map(game => ({ ...game, appid: parseInt(game.appid, 10), })) .sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase())); setGames(sortedGames); } } catch (error) { console.error("Error fetching games:", error); } }; fetchGames(); }, []); const handlePatchClick = async () => { if (!selectedGame) return; try { await SteamClient.Apps.SetAppLaunchOptions(selectedGame.appid, '~/fgmod/fgmod %COMMAND%'); setResult(`Launch options set successfully for ${selectedGame.name}. You can now select DLSS in the game's menu to use FSR Upscaling and FrameGen equivalents.`); } catch (error) { setResult(error instanceof Error ? `Error setting launch options: ${error.message}` : 'Error setting launch options'); } }; const handleUnpatchClick = async () => { if (!selectedGame) return; try { await SteamClient.Apps.SetAppLaunchOptions(selectedGame.appid, '~/fgmod/fgmod-uninstaller.sh %COMMAND%'); setResult(`DLSS mods will uninstall on next launch of ${selectedGame.name}. The game is now unpatched.`); } catch (error) { setResult(error instanceof Error ? `Error clearing launch options: ${error.message}` : 'Error clearing launch options'); } }; return ( ({ data: game.appid, label: game.name }))} selectedOption={selectedGame?.appid} onChange={(option) => { const game = games.find(g => g.appid === option.data); setSelectedGame(game || null); setResult(''); }} strDefaultLabel="Select a game..." menuLabel="Installed Games" /> {selectedGame && ( <>
{selectedGame.name}
Patch Unpatch )} {result && (
{result}
)}
); } export default definePlugin(() => ({ name: "Framegen Plugin", titleView:
Decky Framegen
, alwaysRender: true, content: ( <> ), icon: , onDismount() { console.log("Framegen Plugin unmounted"); }, })); function MainContent() { return ( <> {} ); }