From aeac1d3adf88a4f70f80e7f02d2090bc760e875e Mon Sep 17 00:00:00 2001 From: xXJsonDeruloXx Date: Sat, 12 Jul 2025 19:51:10 -0400 Subject: update lsfg-vk zip file references to lsfg-vk_archlinux.zip --- main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'main.py') diff --git a/main.py b/main.py index e90027d..1e4cd6f 100644 --- a/main.py +++ b/main.py @@ -14,14 +14,14 @@ class Plugin: async def install_lsfg_vk(self) -> dict: """Install lsfg-vk by extracting the zip file to ~/.local""" try: - # Get the path to the lsfg-vk.zip file in the bin directory + # Get the path to the lsfg-vk_archlinux.zip file in the bin directory plugin_dir = os.path.dirname(os.path.realpath(__file__)) - zip_path = os.path.join(plugin_dir, "bin", "lsfg-vk.zip") + zip_path = os.path.join(plugin_dir, "bin", "lsfg-vk_archlinux.zip") # Check if the zip file exists if not os.path.exists(zip_path): - decky.logger.error(f"lsfg-vk.zip not found at {zip_path}") - return {"success": False, "error": "lsfg-vk.zip file not found"} + decky.logger.error(f"lsfg-vk_archlinux.zip not found at {zip_path}") + return {"success": False, "error": "lsfg-vk_archlinux.zip file not found"} # Get the user's home directory user_home = os.path.expanduser("~") -- cgit v1.2.3