diff --git a/dots/archinstall/t470p/packages.txt b/dots/archinstall/t470p/packages.txt index e55e0f7..c76cf08 100644 --- a/dots/archinstall/t470p/packages.txt +++ b/dots/archinstall/t470p/packages.txt @@ -17,4 +17,4 @@ ttf-nerd-fonts-symbols hypridle hyprlock aur:hyprdim -yay # test_this_thing +yay # test this_thing diff --git a/scripts/99_software.sh b/scripts/99_software.sh index bc9dbc5..f544b66 100644 --- a/scripts/99_software.sh +++ b/scripts/99_software.sh @@ -83,6 +83,7 @@ if [ ${operation} == "update" ] ; then if [[ "$x" =~ ^aur:* ]]; then x=${x:4} echo "Adding $x to AUR list" + list_aur+="$x " else echo "Adding $x to Arch list" list+="$x " @@ -102,6 +103,15 @@ if [ ${operation} == "update" ] ; then echo "No Arch packages to install" fi + if [[ -n "$list_aur" ]] + then + echo "--------------->" + echo $list_aur + #pacman -S --needed --noconfirm $list + else + echo "No AUR packages to install" + fi + fi