summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorxXJsonDeruloXx <danielhimebauch@gmail.com>2025-07-12 19:51:10 -0400
committerxXJsonDeruloXx <danielhimebauch@gmail.com>2025-07-12 19:51:10 -0400
commitaeac1d3adf88a4f70f80e7f02d2090bc760e875e (patch)
tree15510a111be76d245750434aa260fdda74ad1de9 /main.py
parent196c10d0877d24399893aabb6d84aa5f2faeb29b (diff)
downloaddecky-lsfg-vk-aeac1d3adf88a4f70f80e7f02d2090bc760e875e.tar.gz
decky-lsfg-vk-aeac1d3adf88a4f70f80e7f02d2090bc760e875e.zip
update lsfg-vk zip file references to lsfg-vk_archlinux.zip
Diffstat (limited to 'main.py')
-rw-r--r--main.py8
1 files changed, 4 insertions, 4 deletions
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("~")