From e13c77dd00d92c0f80831aa6accc634a3fe7b5b6 Mon Sep 17 00:00:00 2001 From: Botspot Date: Tue, 26 Jan 2021 22:11:59 -0600 Subject: [PATCH] teamviewer host many fixes. botspot-ifyed --- apps/TeamViewer Host/install-32 | 26 +++++++++++--------------- apps/TeamViewer Host/uninstall | 10 +++++++--- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/apps/TeamViewer Host/install-32 b/apps/TeamViewer Host/install-32 index a755384..f2bbebb 100755 --- a/apps/TeamViewer Host/install-32 +++ b/apps/TeamViewer Host/install-32 @@ -1,21 +1,17 @@ #!/bin/bash -# Download teamviewer installation file # -wget https://download.teamviewer.com/download/linux/teamviewer-host_armhf.deb - -# Install it with dpkg # -sudo dpkg -i teamviewer-host_armhf.deb +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" -# Install it's dependencies # -sudo apt --fix-broken install -y +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} -# Delete teamviewer installation file # -rm teamviewer-host_armhf.deb - -# Credit # +# Download teamviewer installation file # +wget https://download.teamviewer.com/download/linux/teamviewer-host_armhf.deb || error "Failed to download teamviewer-host_armhf.deb" -echo This is the teamviewer installer made by Benmac83#3821! \(Discord\) -echo The packages and everything that this script downloads is NOT made by me and all credit for the package that is downloaded should go to Teamviewer! \(https://www.teamviewer.com/\) +# Install it with dpkg +sudo apt install -y --fix-broken ~/teamviewer-host_armhf.deb || error "Failed to install teamviewer-host_armhf.deb" -# Print out thanks # -echo Thank you for using my script. I hope you have a great day! +# Delete teamviewer installation file +rm -f ~/teamviewer-host_armhf.deb diff --git a/apps/TeamViewer Host/uninstall b/apps/TeamViewer Host/uninstall index 6e2d80b..03d7cfc 100755 --- a/apps/TeamViewer Host/uninstall +++ b/apps/TeamViewer Host/uninstall @@ -1,6 +1,10 @@ #!/bin/bash -echo Goodbye! +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" -sudo dpkg -r teamviewer-host -sudo apt autoremove -y +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +sudo apt purge -y teamviewer-host || error "APT failed to remove teamviewer-host package."