linutil/core/tabs/applications-setup/office-suites/wpsoffice.sh
2024-10-01 11:58:48 +05:30

36 lines
772 B
Bash

#!/bin/sh -e
. ../common-script.sh
checkWpsOfficeInstallation() {
case "$PACKAGER" in
pacman)
command_exists wps
;;
*)
checkFlatpak
flatpak_app_exists com.wps.Office
;;
esac
}
installWpsOffice() {
if ! checkWpsOfficeInstallation; then
printf "%b\n" "${YELLOW}Installing WPS Office...${RC}"
case "$PACKAGER" in
pacman)
"$AUR_HELPER" -S --needed --noconfirm wps-office
;;
*)
flatpak install flathub com.wps.Office
;;
esac
else
printf "%b\n" "${GREEN}WPS Office is already installed.${RC}"
fi
}
checkEnv
checkEscalationTool
checkAurHelper
installWpsOffice