mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
23 lines
508 B
Bash
23 lines
508 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
. ../../common-script.sh
|
||
|
|
||
|
installChromium() {
|
||
|
if ! command_exists chromium; then
|
||
|
printf "%b\n" "${YELLOW}Installing Chromium...${RC}"
|
||
|
case "$PACKAGER" in
|
||
|
pacman)
|
||
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm chromium
|
||
|
;;
|
||
|
*)
|
||
|
"$ESCALATION_TOOL" "$PACKAGER" install -y chromium
|
||
|
;;
|
||
|
esac
|
||
|
else
|
||
|
printf "%b\n" "${GREEN}Chromium Browser is already installed.${RC}"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
checkEnv
|
||
|
checkEscalationTool
|
||
|
installChromium
|