-
Notifications
You must be signed in to change notification settings - Fork 270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added waterfox browser #700
Changes from 10 commits
3911cf6
ce764c0
d543337
4fdbf65
0b9ba63
054acfa
9511a7d
8bfd536
c0728e1
f2526b0
6bde176
36d65e5
ff26cb1
b7ae502
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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 | ||||||
;; | ||||||
hexisXz marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
*) | ||||||
. ./setup-flatpak.sh | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @nnyyxxxx You're the one not testing now.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
fixed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
not my job, not my pr, 😆 |
||||||
flatpak install -y flathub net.waterfox.waterfox | ||||||
;; | ||||||
hexisXz marked this conversation as resolved.
Show resolved
Hide resolved
hexisXz marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
esac | ||||||
else | ||||||
printf "%b\n" "${GREEN}Waterfox is already installed.${RC}" | ||||||
fi | ||||||
} | ||||||
|
||||||
checkEnv | ||||||
checkEscalationTool | ||||||
hexisXz marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
checkAURHelper | ||||||
installWaterfox |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add
net.waterfox.waterfox
for flatpak binaries