Switch from yay to paru

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2021-01-19 16:33:32 +01:00
parent df560bb45a
commit 1ba6c9ffdd
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
7 changed files with 23 additions and 15 deletions

View file

@ -11,15 +11,15 @@
output::section "Arch Packages"
# List created using: yay -Qqen > packages.native.list
# List created using: paru -Qqen > packages.native.list
if output::prompt "Do you want to install Arch packages?"; then
output::log "Updating package database"
yay -Syy |& output::debug
paru -Syy |& output::debug
output::success "Package database successfully updated"
package_count=$(< "${INSTALL_DIR}/packages/packages.native.list" wc -l)
output::log "Installing ${package_count} packages"
yay -S \
paru -S \
--asexplicit \
--noconfirm \
--sudoloop \