Added Torbrowser

This commit is contained in:
RealStickman 2020-06-21 20:16:27 +00:00
parent 8219fc21e4
commit 08155ec683

View File

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