From 9b8b21cc5596e61455ce9ceb104101c5b3b1ec2d Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sun, 23 Mar 2025 20:56:50 -0400 Subject: [PATCH] Generated scripts for posix systems now find the path to gzdoom in case it is not in /usr/bin. --- Toby Doom Launcher.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Toby Doom Launcher.py b/Toby Doom Launcher.py index f2b7f5f..b8d0fcc 100755 --- a/Toby Doom Launcher.py +++ b/Toby Doom Launcher.py @@ -1349,8 +1349,15 @@ class DoomLauncher(QMainWindow): # Build bash script content content = ["#!/usr/bin/env bash"] - # Use 'exec' with stdbuf, but with line continuations - content.append("exec stdbuf -oL /usr/bin/gzdoom \\") + # Use 'exec' with stdbuf + try: + gzdoom_path = subprocess.check_output(["which", "gzdoom"], + text=True, + stderr=subprocess.PIPE).strip() + content.append(f"exec stdbuf -oL {gzdoom_path} \\") + except subprocess.CalledProcessError: + # Couldn't get the path, just use the command and hope for the best + content.append("exec stdbuf -oL gzdoom \\") # Add IWAD content.append(f" -iwad \"{iwadPath}\" \\")