mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
23 lines
535 B
Bash
23 lines
535 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
|
||
|
;;
|
||
|
*)
|
||
|
"$ESCALATION_TOOL" "$PACKAGER" install -y okular
|
||
|
;;
|
||
|
esac
|
||
|
else
|
||
|
printf "%b\n" "${GREEN}Okular is already installed.${RC}"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
checkEnv
|
||
|
checkEscalationTool
|
||
|
installOkular
|