From 55b8fd48b19453b2f15af4e71da3e8dcfb286a8f Mon Sep 17 00:00:00 2001 From: Faugus Date: Thu, 8 Jan 2026 22:29:30 -0300 Subject: [PATCH] Fixed launchers not being installed with the new Proton management --- faugus_launcher.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/faugus_launcher.py b/faugus_launcher.py index 8ebb821..9b3617a 100644 --- a/faugus_launcher.py +++ b/faugus_launcher.py @@ -2540,9 +2540,9 @@ class Main(Gtk.Window): if runner: if runner == "Proton-CachyOS": - command = f"PROTONPATH={proton_cachyos} {command}" + command = f"PROTONPATH='{proton_cachyos}' {command}" else: - command = f"PROTONPATH={runner} {command}" + command = f"PROTONPATH='{runner}' {command}" self.bar_download.set_visible(False) self.label_download2.set_visible(True)