added waterfox browser

This commit is contained in:
hexisXz 2024-09-30 03:59:05 +00:00
parent 0b9ba635a9
commit 054acfab1e

View File

@ -1,37 +1,32 @@
#!/bin/sh -e #!/bin/sh -e
. ../../common-script.sh . ../../common-script.sh
buildWaterfox() {
wget -O waterfox.tar.bz2 "https://cdn1.waterfox.net/waterfox/releases/latest/linux" && tar -xvjf waterfox.tar.bz2 -C ./ && rm waterfox.tar.bz2 ; sudo mkdir -p /opt/waterfox && sudo mv waterfox /opt/waterfox && cd /opt/waterfox/waterfox && sudo ln -s /opt/waterfox/waterfox/waterfox /usr/bin/waterfox
}
installWaterfox() { installWaterfox() {
if ! command_exists waterfox; then buildWaterfox=$(curl -L -o waterfox.tar.bz2 "https://cdn1.waterfox.net/waterfox/releases/latest/linux" && tar -xvjf waterfox.tar.bz2 -C ./ && rm waterfox.tar.bz2 ; sudo mkdir -p /opt/waterfox && sudo mv waterfox /opt/waterfox && cd /opt/waterfox/waterfox && sudo ln -s /opt/waterfox/waterfox/waterfox /usr/bin/waterfox)
printf "%b\n" "${YELLOW}Installing waterfox...${RC}"
case "$PACKAGER" in if ! command_exists firefox; then
apt-get|nala) printf "%b\n" "${YELLOW}Installing waterfox...${RC}"
"$ESCALATION_TOOL" "$PACKAGER" install -y wget && buildWaterfox case "$PACKAGER" in
;; apt-get|nala)
zypper) "$ESCALATION_TOOL" "$PACKAGER" install -y curl && printf("$buildWaterfox")
"$ESCALATION_TOOL" "$PACKAGER" --non-interactive install wget && buildWaterfox ;;
;; zypper)
pacman) "$ESCALATION_TOOL" "$PACKAGER" --non-interactive install curl && printf("$buildWaterfox")
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm wget && buildWaterfox ;;
;; pacman)
dnf) "$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm curl && printf("$buildWaterfox")
"$ESCALATION_TOOL" "$PACKAGER" install -y wget && buildWaterfox ;;
;; dnf)
*) "$ESCALATION_TOOL" "$PACKAGER" install -y curl && printf("$buildWaterfox")
printf "%b\n" "${RED}Unsupported package manager: ""$PACKAGER""${RC}" ;;
exit 1 *)
;; printf "%b\n" "${RED}Unsupported package manager: ""$PACKAGER""${RC}"
esac exit 1
;;
esac
else else
printf "%b\n" "${GREEN}waterfox is already installed.${RC}" printf "%b\n" "${GREEN}Waterfox Browser is already installed.${RC}"
fi fi
} }