-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added waterfox browser * added waterfox browser * added waterfox browser * added waterfox browser * added waterfox browser * added waterfox browser * added waterfox browser * added waterfox browser * fixed things * fixed things * added FI * flatpak fix * added lapce IDE * .
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/sh -e | ||
|
||
. ../../common-script.sh | ||
|
||
installWaterfox() { | ||
if ! command_exists waterfox; then | ||
printf "%b\n" "${YELLOW}Installing waterfox...${RC}" | ||
case "$PACKAGER" in | ||
pacman) | ||
"$AUR_HELPER" -S --needed --noconfirm waterfox-bin | ||
;; | ||
*) | ||
. ../setup-flatpak.sh | ||
flatpak install -y flathub net.waterfox.waterfox | ||
;; | ||
esac | ||
else | ||
printf "%b\n" "${GREEN}Waterfox is already installed.${RC}" | ||
fi | ||
} | ||
|
||
checkEnv | ||
checkEscalationTool | ||
checkAURHelper | ||
installWaterfox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters