From 10b9013126721c1a07a2a3441933d2441581dd0b Mon Sep 17 00:00:00 2001 From: tuxwarrior Date: Wed, 1 May 2024 16:03:18 -0500 Subject: [PATCH] u --- dots/archinstall/t470p/packages.txt | 2 +- scripts/99_software.sh | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) 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