linutil/core/tabs/applications-setup/communication-apps/telegram-setup.sh
Jeevitha Kannan K S 1e39d967c5
feat: Alpine linux support (#814)
* Add basic apk to scripts

* Add common service script

* Fix alpine bugs

* Add flatpak installations

* chore: update scripts, add common-service-script to shellcheckrc
2024-11-07 13:03:21 -06:00

26 lines
682 B
Bash

#!/bin/sh -e
. ../../common-script.sh
installTelegram() {
if ! command_exists telegram-desktop; then
printf "%b\n" "${YELLOW}Installing Telegram...${RC}"
case "$PACKAGER" in
pacman)
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm telegram-desktop
;;
apk)
"$ESCALATION_TOOL" "$PACKAGER" add telegram-desktop
;;
*)
"$ESCALATION_TOOL" "$PACKAGER" install -y telegram-desktop
;;
esac
else
printf "%b\n" "${GREEN}Telegram is already installed.${RC}"
fi
}
checkEnv
checkEscalationTool
installTelegram