Compare commits

...

15 Commits

Author SHA1 Message Date
hexis
8a5535b16e
Merge b7ae502899 into 79eb752552 2024-10-09 13:45:56 +02:00
hexisXz
b7ae502899 . 2024-10-01 22:58:03 +00:00
hexisXz
ff26cb159c added lapce IDE 2024-10-01 22:36:55 +00:00
hexisXz
36d65e5e63 flatpak fix 2024-09-30 14:45:15 +00:00
hexisXz
6bde17648a added FI 2024-09-30 04:50:22 +00:00
hexisXz
f2526b048e fixed things 2024-09-30 04:41:55 +00:00
hexisXz
c0728e1b10 fixed things 2024-09-30 04:31:44 +00:00
hexisXz
8bfd5367fb added waterfox browser 2024-09-30 04:07:43 +00:00
hexisXz
9511a7d2c1 added waterfox browser 2024-09-30 04:04:33 +00:00
hexisXz
054acfab1e added waterfox browser 2024-09-30 03:59:05 +00:00
hexisXz
0b9ba635a9 added waterfox browser 2024-09-30 03:08:12 +00:00
hexisXz
4fdbf65bb1 added waterfox browser 2024-09-30 03:05:07 +00:00
hexisXz
d54333752b added waterfox browser 2024-09-30 02:58:28 +00:00
hexisXz
ce764c03c7 added waterfox browser 2024-09-30 02:57:04 +00:00
hexisXz
3911cf61e8 added waterfox browser 2024-09-30 02:14:40 +00:00
2 changed files with 31 additions and 0 deletions

View File

@ -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

View File

@ -186,6 +186,12 @@ description = "Vivaldi is a freeware, cross-platform web browser developed by Vi
script = "browsers/vivaldi.sh"
task_list = "I"
[[data.entries]]
name = "waterfox"
description = "Waterfox is the privacy-focused web browser engineered to give you speed, control, and peace of mind on the internet."
script = "browsers/waterfox.sh"
task_list = "FI"
[[data]]
name = "Alacritty"
description = "Alacritty is a modern terminal emulator that comes with sensible defaults, but allows for extensive configuration. By integrating with other applications, rather than reimplementing their functionality, it manages to provide a flexible set of features with high performance. The supported platforms currently consist of BSD, Linux, macOS and Windows.\nThis command installs and condifures alacritty terminal emulator."