You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Botspot-Pi-Apps/apps/Update Buddy/install

31 lines
723 B
Plaintext

#!/bin/bash
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
function error {
echo -e "\\e[91m$1\\e[39m"
exit 1
}
rm -rf ~/update-buddy
echo "Downloading..."
git clone https://github.com/Botspot/update-buddy || error 'Failed to download update-buddy repository!'
5 years ago
echo "Making autostart entry..."
mkdir -p ~/.config/autostart
echo "[Desktop Entry]
Name=Update Buddy
5 years ago
Exec=$HOME/update-buddy/onstartup.sh
Type=Application
X-GNOME-Autostart-enabled=true
Hidden=false
NoDisplay=false" > ~/.config/autostart/update-buddy.desktop
5 years ago
chmod +x $HOME/update-buddy/onstartup.sh
echo "Running Update Buddy for the first time..."
#first time run
setsid $HOME/update-buddy/onstartup.sh &