mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2025-02-23 09:27:03 +00:00
23 lines
578 B
Bash
23 lines
578 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)
|
|
elevated_execution "$PACKAGER" -S --needed --noconfirm telegram-desktop
|
|
;;
|
|
*)
|
|
elevated_execution "$PACKAGER" install -y telegram-desktop
|
|
;;
|
|
esac
|
|
else
|
|
printf "%b\n" "${GREEN}Telegram is already installed.${RC}"
|
|
fi
|
|
}
|
|
|
|
checkEnv
|
|
checkEscalationTool
|
|
installTelegram |