From 6a106237ff298413b64e12f4657e3051a5b0ba45 Mon Sep 17 00:00:00 2001 From: Botspot Date: Wed, 7 Oct 2020 16:02:44 -0500 Subject: [PATCH] text editor run in background --- createapp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/createapp b/createapp index 9b4ae4a..039bc25 100755 --- a/createapp +++ b/createapp @@ -130,7 +130,7 @@ Do you want to edit ${name}?" --timeout=10 \ preferrededitor=geany fi - "$preferrededitor" "${DIRECTORY}/apps/${name}/install" + "$preferrededitor" "${DIRECTORY}/apps/${name}/install" & output="$(yad --form --on-top \ --title="Create App: Step $step" --window-icon="${DIRECTORY}/icons/logo.png" --center --width=310 --height=300 \ @@ -163,7 +163,7 @@ A text editor should have openened and you can create your install script.' \ preferrededitor=geany fi - "$preferrededitor" "${DIRECTORY}/apps/${name}/uninstall" + "$preferrededitor" "${DIRECTORY}/apps/${name}/uninstall" & output="$(yad --form --on-top \ --title="Create App: Step $step" --window-icon="${DIRECTORY}/icons/logo.png" --center --width=310 --height=300 \