diff --git a/arch-setup/install.sh b/arch-setup/install.sh index afd43370..6bc9a4d6 100644 --- a/arch-setup/install.sh +++ b/arch-setup/install.sh @@ -40,7 +40,8 @@ options=(1 "Firefox" on # any option can be set to default to "on" 2 "Ungoogled-Chromium" off 3 "Palemoon" off 4 "Basilisk" off - 5 "Netsurf" off) + 5 "Netsurf" off + 6 "Icecat" off) choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty) clear for choice in $choices @@ -66,6 +67,10 @@ do sudo pacman -S --needed netsurf echo Installed Netsurf ;; + 6) + sudo yay -S --needed icecat-bin + echo Installed Icecat + ;; esac done