From 0eca5cb11f52ea0056383487c411d0d7a3e61145 Mon Sep 17 00:00:00 2001 From: Botspot Date: Sat, 14 Aug 2021 23:08:15 -0500 Subject: [PATCH] Update Buddy: fix background process so the terminal closes --- apps/Update Buddy/install | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/Update Buddy/install b/apps/Update Buddy/install index 2474061..ab8dac4 100755 --- a/apps/Update Buddy/install +++ b/apps/Update Buddy/install @@ -7,12 +7,11 @@ function error { exit 1 } -# Get dependencies -"${DIRECTORY}/pkg-install" "yad" "$(dirname "$0")" || exit 1 - rm -rf ~/update-buddy +echo "Downloading..." git clone https://github.com/Botspot/update-buddy || error 'Failed to download update-buddy repository!' +echo "Making autostart entry..." mkdir -p ~/.config/autostart echo "[Desktop Entry] Name=Update Buddy @@ -24,7 +23,8 @@ NoDisplay=false" > ~/.config/autostart/update-buddy.desktop chmod +x $HOME/update-buddy/onstartup.sh +echo "Running Update Buddy for the first time..." #first time run -setsid $HOME/update-buddy/onstartup.sh +setsid $HOME/update-buddy/onstartup.sh &