summaryrefslogtreecommitdiff
path: root/py_modules/lsfg_vk
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-08-03 14:36:43 -0400
committerGitHub <noreply@github.com>2026-08-03 14:36:43 -0400
commit1bba458079c36c4f95b757e820c746a0f95ed64f (patch)
tree52c1cad716b92c784d2946d063cc36b34255ea5e /py_modules/lsfg_vk
parent5598bb0e97fd9a0e16f63c4c93a4dc6ae1f169ab (diff)
parentc52d1fa86d302d0d6cb29808aa62c755c7b33362 (diff)
downloaddecky-lsfg-vk-1bba458079c36c4f95b757e820c746a0f95ed64f.tar.gz
decky-lsfg-vk-1bba458079c36c4f95b757e820c746a0f95ed64f.zip
Merge pull request #231 from sana2dang/language
Add multiple languages
Diffstat (limited to 'py_modules/lsfg_vk')
-rw-r--r--py_modules/lsfg_vk/installation.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/py_modules/lsfg_vk/installation.py b/py_modules/lsfg_vk/installation.py
index 49ed711..ce47268 100644
--- a/py_modules/lsfg_vk/installation.py
+++ b/py_modules/lsfg_vk/installation.py
@@ -55,7 +55,7 @@ class InstallationService(BaseService):
arm_so_path = plugin_dir / BIN_DIR / ARM_LIB_FILENAME
self._copy_plugin_file(arm_so_path, self.lib_file)
self.log.info(f"Overwrote with ARM binary: {self.lib_file}")
-
+
self._create_config_file()
self._create_lsfg_launch_script()
@@ -74,7 +74,7 @@ class InstallationService(BaseService):
def _is_arm_architecture(self) -> bool:
"""Check if running on ARM architecture
-
+
Returns:
True if running on ARM (aarch64), False otherwise
"""
@@ -107,7 +107,7 @@ class InstallationService(BaseService):
"""Copy plugin content without preserving FEX-incompatible metadata."""
shutil.copyfile(src_file, dst_file)
dst_file.chmod(0o644)
-
+
def _extract_and_install_files(self, zip_path: Path) -> None:
"""Extract zip file and install files to appropriate locations