diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-09-23 21:49:41 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-09-23 21:49:41 -0400 |
| commit | 2bdb40c5d0049142a1dd3ee6c2c4307cdd51a4dc (patch) | |
| tree | ada98101c5d7000c3166b9da4f3bcc9dcb32a732 /defaults/assets/fgmod.sh | |
| parent | 92cfcdf5c5b700dfb8507e879d481cd810006f9c (diff) | |
| download | Decky-Framegen-2bdb40c5d0049142a1dd3ee6c2c4307cdd51a4dc.tar.gz Decky-Framegen-2bdb40c5d0049142a1dd3ee6c2c4307cdd51a4dc.zip | |
feat: add optipatcher bin, fgmod plugin path, install and uninstall logic for extended spoofingv0.12.3
Diffstat (limited to 'defaults/assets/fgmod.sh')
| -rwxr-xr-x | defaults/assets/fgmod.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/defaults/assets/fgmod.sh b/defaults/assets/fgmod.sh index f61a70a..7cd9590 100755 --- a/defaults/assets/fgmod.sh +++ b/defaults/assets/fgmod.sh @@ -123,6 +123,15 @@ else logger -t fgmod "📄 OptiScaler.ini installed to $exe_folder_path" fi +# === ASI Plugins Directory === +if [[ -d "$fgmod_path/plugins" ]]; then + echo "🔌 Installing ASI plugins directory" + cp -r "$fgmod_path/plugins" "$exe_folder_path/" || true + logger -t fgmod "🔌 ASI plugins directory installed to $exe_folder_path" +else + echo "⚠️ No plugins directory found in fgmod" +fi + # === Supporting Libraries === cp -f "$fgmod_path/libxess.dll" "$exe_folder_path/" || true cp -f "$fgmod_path/libxess_dx11.dll" "$exe_folder_path/" || true |
