Update core/tabs/applications-setup/communication-apps/whatsapp-setup.sh

Co-authored-by: JEEVITHA KANNAN K S <ksjeevithakannan123@gmail.com>
This commit is contained in:
Harsh Vyapari 2024-10-20 17:57:44 +05:30 committed by GitHub
parent 4671a8c12e
commit 09aea49b2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,26 +4,20 @@
installWhatsapp() { installWhatsapp() {
printf "%b\n" "${YELLOW}The app we are installing is Zap-Zap, an Open Source Desktop Client for Linux${RC}" printf "%b\n" "${YELLOW}The app we are installing is Zap-Zap, an Open Source Desktop Client for Linux${RC}"
case "$PACKAGER" in if ! command_exists com.rtosta.zapzap && ! command_exists zapzap; then
pacman) printf "%b\n" "${YELLOW}Installing Whatsapp(Zap-Zap by rtosta)${RC}"
if ! command_exists zapzap; then case "$PACKAGER" in
printf "%b\n" "${YELLOW}Installing Whatsapp(Zap-Zap by rtosta) AUR PACKAGE${RC}" pacman)
"$AUR_HELPER" -S --needed --noconfirm zapzap "$AUR_HELPER" -S --needed --noconfirm zapzap
printf "%b\n" "${GREEN}WhatsApp(Zap-Zap by rtosta) is installed. Search ZapZap to start WhatsApp${RC}" ;;
return *)
else . ../setup-flatpak.sh
printf "%b\n" "${GREEN}Whatsapp(Zap-Zap by rtosta) is already installed${RC}" flatpak install flathub com.rtosta.zapzap
return ;;
fi esac
;; else
*) printf "%b\n" "${GREEN}WhatsApp(Zap-Zap by rtosta) is already installed.${RC}"
. ../setup-flatpak.sh fi
printf "%b\n" "${YELLOW} Installing Whatsapp(Zap-Zap by rtosta) Flatpak ${RC}"
flatpak install flathub com.rtosta.zapzap
printf "%b\n" "${GREEN}WhatsApp(Zap-Zap by rtosta) is installed. Search ZapZap to start WhatsApp${RC}"
return
;;
esac
} }
checkEnv checkEnv