From 5107076b2f2354b7b68b11602347eed2539ff093 Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Sun, 17 Jan 2021 16:17:51 -0500 Subject: [PATCH] Fallback logo --- lug-helper.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lug-helper.sh b/lug-helper.sh index a063f79..7e28c15 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -109,8 +109,10 @@ menu_option_height="25" # Otherwise, default to the logo in the same directory if [ -f "/usr/share/pixmaps/lug-logo.png" ]; then lug_logo="/usr/share/pixmaps/lug-logo.png" -else +elif [ -f "lug-logo.png" ]; then lug_logo="lug-logo.png" +else + lug_logo="info" fi ############################################################################