Merge pull request #88 from viveksray17/feature
Download and install all the packages simultaneously
This commit is contained in:
commit
433d20f9ef
|
@ -202,10 +202,8 @@ PKGS=(
|
||||||
'zsh-autosuggestions'
|
'zsh-autosuggestions'
|
||||||
)
|
)
|
||||||
|
|
||||||
for PKG in "${PKGS[@]}"; do
|
installpkg="sudo pacman -S $(printf "%s " "${PKGS[@]}") --noconfirm --needed"
|
||||||
echo "INSTALLING: ${PKG}"
|
$installpkg
|
||||||
sudo pacman -S "$PKG" --noconfirm --needed
|
|
||||||
done
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# determine processor type and install microcode
|
# determine processor type and install microcode
|
||||||
|
|
|
@ -51,9 +51,8 @@ PKGS=(
|
||||||
'snap-pac'
|
'snap-pac'
|
||||||
)
|
)
|
||||||
|
|
||||||
for PKG in "${PKGS[@]}"; do
|
installpkg="yay -S $(printf "%s " "${PKGS[@]}") --noconfirm --needed"
|
||||||
yay -S --noconfirm $PKG
|
$installpkg
|
||||||
done
|
|
||||||
|
|
||||||
export PATH=$PATH:~/.local/bin
|
export PATH=$PATH:~/.local/bin
|
||||||
cp -r $HOME/$SCRIPTHOME/dotfiles/* $HOME/.config/
|
cp -r $HOME/$SCRIPTHOME/dotfiles/* $HOME/.config/
|
||||||
|
|
Loading…
Reference in New Issue