From e8201393c7b28a14630553acd4403cdfb33a1330 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Mon, 15 Mar 2021 15:05:00 +0100 Subject: [PATCH] Move selected packages from list to top of section --- arch-setup/install.sh | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/arch-setup/install.sh b/arch-setup/install.sh index 08228e8b..ae4e1c9f 100644 --- a/arch-setup/install.sh +++ b/arch-setup/install.sh @@ -326,6 +326,14 @@ echo Installed wine ################### echo Installing selected programs +# install selected packages +echo Installing from official repository +sudo pacman -S --needed - < "$setupdir/selectedpkgs.txt" + +# install selected aur packages +echo Installing from AUR +paru -S --needed - < "$setupdir/aurselectedpkgs.txt" + #DEs & WMs : ' if [ $in_xfce -eq 1 ]; then @@ -483,6 +491,7 @@ else fi ' +: ' if [ $in_mangohud -eq 1 ]; then echo "Installing MangoHud" git clone --recurse-submodules https://github.com/flightlessmango/MangoHud.git @@ -490,6 +499,7 @@ if [ $in_mangohud -eq 1 ]; then else echo "Skipping MangoHud" fi +' : ' if [ $in_easystrokes -eq 1 ]; then @@ -628,11 +638,9 @@ if [ $in_arco_hp -eq 1 ]; then paru -S --needed - < "$setupdir/packages/arch-hp-packages.txt" fi -# install selected packages -sudo pacman -S --needed - < "$setupdir/selectedpkgs.txt" - -# install selected aur packages -paru -S --needed - < "$setupdir/aurselectedpkgs.txt" +############################## +##### Configuration ##### +############################## #change shell chsh -s /usr/bin/fish "$USER"