From df6470e22fa2d7b56d2bd94fa7dae82bb4464a45 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Wed, 6 Aug 2025 15:10:40 -0400 Subject: [PATCH] Properly use new line characters so new lines show up instead of \n --- linux-game-manager.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-game-manager.sh b/linux-game-manager.sh index c2a7e26..f1d076c 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -122,7 +122,7 @@ ui_msgbox() { local text="$3" if [[ "$dialog_type" == "yad" ]]; then - echo "$text" | yad --text-info \ + echo -e "$text" | yad --text-info \ --title="$title" \ --show-cursor \ --button="OK:0" \