mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-22 13:22:28 +00:00
1e39d967c5
* Add basic apk to scripts * Add common service script * Fix alpine bugs * Add flatpak installations * chore: update scripts, add common-service-script to shellcheckrc
26 lines
632 B
Bash
26 lines
632 B
Bash
#!/bin/sh -e
|
|
|
|
. ../../common-script.sh
|
|
|
|
installOkular() {
|
|
if ! command_exists okular; then
|
|
printf "%b\n" "${YELLOW}Installing Okular...${RC}"
|
|
case "$PACKAGER" in
|
|
pacman)
|
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm okular
|
|
;;
|
|
apk)
|
|
"$ESCALATION_TOOL" "$PACKAGER" add okular
|
|
;;
|
|
*)
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y okular
|
|
;;
|
|
esac
|
|
else
|
|
printf "%b\n" "${GREEN}Okular is already installed.${RC}"
|
|
fi
|
|
}
|
|
|
|
checkEnv
|
|
checkEscalationTool
|
|
installOkular |