From 190dbd046d98863ae5eccf25af932d83de12bcbb Mon Sep 17 00:00:00 2001 From: Botspot Date: Mon, 28 Sep 2020 10:28:18 -0500 Subject: [PATCH] fix gui bug --- gui | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui b/gui index 5336259..823d26c 100755 --- a/gui +++ b/gui @@ -16,13 +16,14 @@ while true;do for i in $APPS do - LIST="${LIST}$(echo "${DIRECTORY}/icons/$(cat "${DIRECTORY}/data/status/${i}" || echo "none").png") + LIST="$LIST$(echo "${DIRECTORY}/icons/$(cat "${DIRECTORY}/data/status/${i}" || echo "none").png") ${DIRECTORY}/apps/${i}/icon-24.png $i "\("$(cat "${DIRECTORY}/data/status/${i}" || echo "Unknown state")"\)" $(echo "$(cat "${DIRECTORY}/apps/${i}/description" || echo "Description unavailable")" | head -n1) " done IFS="$PREIFS" + LIST="$(echo -e "$LIST")" #echo "$LIST" output="$(echo -e "$LIST" | yad --center --title='Pi-Apps' --width=300 --height=300 --no-headers \ --list --separator='\n' --window-icon="${DIRECTORY}/icons/logo.png" \