diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-22 23:39:19 -0500 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-22 23:39:19 -0500 |
| commit | 52cbb5022f0d6b8b27d7537316630c02982a6bf9 (patch) | |
| tree | b589affd5bd386dba74837367e5d5c0d6b6e5b51 /src | |
| parent | 3fdf564138e09500c54ed9b3b6f100dfd005efe3 (diff) | |
| download | Decky-Framegen-52cbb5022f0d6b8b27d7537316630c02982a6bf9.tar.gz Decky-Framegen-52cbb5022f0d6b8b27d7537316630c02982a6bf9.zip | |
add description, clean up ui
Diffstat (limited to 'src')
| -rwxr-xr-x | src/index.tsx | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/index.tsx b/src/index.tsx index 2b305ee..b5211ea 100755 --- a/src/index.tsx +++ b/src/index.tsx @@ -31,7 +31,12 @@ function FGModInstallerSection() { const result = await checkFGModPath(); setPathExists(result.exists); }; - checkPath(); + + checkPath(); // Initial check + + const intervalId = setInterval(checkPath, 5000); // Check every 5 seconds + + return () => clearInterval(intervalId); // Cleanup interval on component unmount }, []); const handleInstallClick = async () => { @@ -75,6 +80,12 @@ function FGModInstallerSection() { </div> </PanelSectionRow> )} + <PanelSectionRow> + <div> + Once the patch is installed, you can apply the mod by adding the following to the game's launch options:<br /> + <code>/home/deck/fgmod/fgmod %COMMAND%</code> + </div> + </PanelSectionRow> </PanelSection> ); } |
