summaryrefslogtreecommitdiff
path: root/py_modules/lsfg_vk/plugin.py
diff options
context:
space:
mode:
authorJanleyx <242423638+Janleyx@users.noreply.github.com>2026-07-18 10:27:34 -0400
committerJanleyx <242423638+Janleyx@users.noreply.github.com>2026-07-18 10:27:34 -0400
commit84c79a3158d596af97dd89c1abffa2dad8ab899c (patch)
treedb05cfd460f64647466534e49075938b13b9f63a /py_modules/lsfg_vk/plugin.py
parentbbd959cee4d4b3ac784cc5543464775c10a0b981 (diff)
downloaddecky-lsfg-vk-84c79a3158d596af97dd89c1abffa2dad8ab899c.tar.gz
decky-lsfg-vk-84c79a3158d596af97dd89c1abffa2dad8ab899c.zip
gate launch wrapper on Armada host
Diffstat (limited to 'py_modules/lsfg_vk/plugin.py')
-rw-r--r--py_modules/lsfg_vk/plugin.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/py_modules/lsfg_vk/plugin.py b/py_modules/lsfg_vk/plugin.py
index dee2650..74c1677 100644
--- a/py_modules/lsfg_vk/plugin.py
+++ b/py_modules/lsfg_vk/plugin.py
@@ -18,7 +18,7 @@ from .dll_detection import DllDetectionService
from .configuration import ConfigurationService
from .config_schema import ConfigurationManager
from .flatpak_service import FlatpakService
-from .constants import ARMADA_GAME_LAUNCH
+from .constants import ARMADA_DEVICE_ENV, ARMADA_GAME_LAUNCH
class Plugin:
@@ -256,9 +256,9 @@ 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():
+ # Decky runs through FEX on Armada, so the guest OS identity is not a
+ # reliable host check. Require both Armada's native marker and wrapper.
+ if ARMADA_DEVICE_ENV.is_file() and ARMADA_GAME_LAUNCH.is_file():
return {
"launch_option": f"~/lsfg {ARMADA_GAME_LAUNCH} %command%",
"instructions": "Use this combined command in Steam Properties, preserving Armada's game-launch wrapper",