mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 13:39:41 +00:00
09aea49b2c
Co-authored-by: JEEVITHA KANNAN K S <ksjeevithakannan123@gmail.com>
25 lines
650 B
Bash
25 lines
650 B
Bash
#!/bin/sh -e
|
|
|
|
. ../../common-script.sh
|
|
|
|
installWhatsapp() {
|
|
printf "%b\n" "${YELLOW}The app we are installing is Zap-Zap, an Open Source Desktop Client for Linux${RC}"
|
|
if ! command_exists com.rtosta.zapzap && ! command_exists zapzap; then
|
|
printf "%b\n" "${YELLOW}Installing Whatsapp(Zap-Zap by rtosta)${RC}"
|
|
case "$PACKAGER" in
|
|
pacman)
|
|
"$AUR_HELPER" -S --needed --noconfirm zapzap
|
|
;;
|
|
*)
|
|
. ../setup-flatpak.sh
|
|
flatpak install flathub com.rtosta.zapzap
|
|
;;
|
|
esac
|
|
else
|
|
printf "%b\n" "${GREEN}WhatsApp(Zap-Zap by rtosta) is already installed.${RC}"
|
|
fi
|
|
}
|
|
|
|
checkEnv
|
|
installWhatsapp
|