summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md5
-rw-r--r--py_modules/lsfg_vk/plugin.py2
2 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index 7532108..9197b2e 100644
--- a/README.md
+++ b/README.md
@@ -53,6 +53,11 @@ The plugin detects Armada and copies this combined command automatically. LSFG
sets its environment first, then Armada applies the game's settings and launches
Proton normally.
+This is an Armada-specific compatibility path, not a change to the standard
+launch flow. It activates only when Armada's
+`/usr/libexec/armada/armada-game-launch` wrapper is present. SteamOS, Bazzite,
+and other systems continue to receive the existing `~/lsfg %command%` option.
+
## Configuration Options
The plugin provides several configuration options to optimize frame generation for your games:
diff --git a/py_modules/lsfg_vk/plugin.py b/py_modules/lsfg_vk/plugin.py
index 2cb08f4..dee2650 100644
--- a/py_modules/lsfg_vk/plugin.py
+++ b/py_modules/lsfg_vk/plugin.py
@@ -256,6 +256,8 @@ class Plugin:
Returns:
Dict containing the launch option string and instructions
"""
+ # Armada-specific: other distributions do not ship this wrapper and
+ # continue through the unchanged generic launch option below.
if ARMADA_GAME_LAUNCH.is_file():
return {
"launch_option": f"~/lsfg {ARMADA_GAME_LAUNCH} %command%",