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