add ability to mass-install more packages via a plaintext url

artix
Matt C 3 years ago
parent ac772c4d09
commit ace93ae26e

@ -234,10 +234,18 @@ fi
prompt "Would you like to add more packages? (Y/n)" prompt "Would you like to add more packages? (Y/n)"
MP="$response" MP="$response"
if [[ "$MP" != "n" ]]; then if [[ "$MP" != "n" ]]; then
prompt "Would you like to use a URL to a package list? (Y/n)"
OL="$response"
if [[ "$OL" == "n" ]]; then
prompt "Write package names" prompt "Write package names"
PKGNS="$response" PKGNS="$response"
inf "Installing: $PKGNS" inf "Installing: $PKGNS"
pacman -Sy --quiet --noconfirm ${PKGNS} pacman -Sy --quiet --noconfirm ${PKGNS}
else
prompt "URL to package list"
SRC="$response"
pacman -Sy --quiet --noconfirm $(curl ${SRC})
fi
fi fi
inf "Installation complete" inf "Installation complete"

Loading…
Cancel
Save