linutil/core/tabs/applications-setup/communication-apps/telegram-setup.sh
Guru Swarupa 072645bc9b
added communication apps to application setup + small fix in dev tools (#618)
* added communication apps to application setup

* Update core/tabs/applications-setup/communication-apps/thunderbird-setup.sh

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

* Update core/tabs/applications-setup/communication-apps/discord-setup.sh

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

* Update core/tabs/applications-setup/communication-apps/jitsi-meet-setup.sh

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

* Update core/tabs/applications-setup/communication-apps/signal-setup.sh

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

* Update core/tabs/applications-setup/communication-apps/telegram-setup.sh

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

* Update core/tabs/applications-setup/communication-apps/discord-setup.sh

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

* Update core/tabs/applications-setup/communication-apps/jitsi-meet-setup.sh

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

* add --needed

* fix script name.

* added task_list

* fix sh -c

* Update core/tabs/applications-setup/communication-apps/jitsi-setup.sh

Co-authored-by: Nyx <144965845+nnyyxxxx@users.noreply.github.com>

* speed up github desktop installation

* Update core/tabs/applications-setup/communication-apps/zoom-setup.sh

Co-authored-by: Nyx <144965845+nnyyxxxx@users.noreply.github.com>

* Update core/tabs/applications-setup/tab_data.toml

Co-authored-by: Nyx <144965845+nnyyxxxx@users.noreply.github.com>

* Update core/tabs/applications-setup/tab_data.toml

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

---------

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>
Co-authored-by: Nyx <144965845+nnyyxxxx@users.noreply.github.com>
2024-09-22 12:58:52 -05:00

33 lines
972 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
apt-get|nala)
"$ESCALATION_TOOL" "$PACKAGER" -y install telegram-desktop
;;
zypper)
"$ESCALATION_TOOL" "$PACKAGER" --non-interactive install telegram-desktop
;;
pacman)
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm telegram-desktop
;;
dnf)
"$ESCALATION_TOOL" "$PACKAGER" install -y telegram-desktop
;;
*)
printf "%b\n" "${RED}Unsupported package manager: ""$PACKAGER""${RC}"
exit 1
;;
esac
else
printf "%b\n" "${GREEN}Telegram is already installed.${RC}"
fi
}
checkEnv
checkEscalationTool
installTelegram