From fd857b782502ce14b7c287d7614f6a8fad7b4ecf Mon Sep 17 00:00:00 2001 From: G2-Games Date: Sat, 3 Sep 2022 02:11:40 -0500 Subject: [PATCH] Created install script. --- install.sh | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 install.sh diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..cc32491 --- /dev/null +++ b/install.sh @@ -0,0 +1,34 @@ +#!/bin/bash +version=0.1 +bashrc="/home/$USER/.bashrc" + +if ! grep -q 'bash /home/$USER/.welcome/welcome.sh' $bashrc; +then + tput sc + echo "Welcome! Installing..." + cd /home/$USER + mkdir -p /home/$USER/.welcome + curl https://raw.githubusercontent.com/G2-Games/welcome-sh/main/welcome.sh --output /home/$USER/.welcome/welcome.sh + chmod +x /home/$USER/.welcome/welcome.sh + echo 'bash /home/$USER/.welcome/welcome.sh' >> $bashrc + tput rc el ed + echo "Installed!" +else + tput sc + echo -e "\e[35mwelcome.sh\e[0m already installed!" + echo -en "\e[31mDo you want to uninstall welcome.sh?\e[0m\n\e[36mY/n\e[0m" + read -p " " -n 1 -r + echo + if [[ $REPLY =~ ^[Yy]$ ]] + then + rm /home/$USER/.welcome/welcome.sh + rmdir /home/$USER/.welcome + sed -i 's#bash /home/$USER/.welcome/welcome.sh##g' $bashrc + tput rc el ed + echo "Uninstalled!" + else + tput rc el ed + echo "Cancelled." + fi + +fi