linutil/core/tabs/applications-setup/office-suites/onlyoffice.sh

44 lines
1.2 KiB
Bash
Raw Normal View History

#!/bin/sh -e
. ../common-script.sh
2024-10-01 07:13:28 +01:00
checkOnlyOfficeInstallation() {
case "$PACKAGER" in
zypper|dnf)
checkFlatpak
flatpak_app_exists org.onlyoffice.desktopeditors
;;
*)
command_exists onlyoffice-desktopeditors
;;
esac
}
installOnlyOffice() {
2024-10-01 07:13:28 +01:00
if ! checkOnlyOfficeInstallation; then
printf "%b\n" "${YELLOW}Installing Only Office..${RC}."
case "$PACKAGER" in
apt-get|nala)
curl -O https://download.onlyoffice.com/install/desktop/editors/linux/onlyoffice-desktopeditors_amd64.deb
"$ESCALATION_TOOL" "$PACKAGER" install -y ./onlyoffice-desktopeditors_amd64.deb
;;
zypper|dnf)
flatpak install -y flathub org.onlyoffice.desktopeditors
;;
pacman)
"$AUR_HELPER" -S --needed --noconfirm onlyoffice
;;
*)
printf "%b\n" "${RED}Unsupported package manager: ""$PACKAGER""${RC}"
exit 1
;;
esac
else
printf "%b\n" "${GREEN}Only Office is already installed.${RC}"
fi
}
checkEnv
checkEscalationTool
checkAurHelper
installOnlyOffice