This commit is contained in:
tuxwarrior
2024-05-01 16:03:18 -05:00
parent 3d71eecaef
commit 10b9013126
2 changed files with 11 additions and 1 deletions

View File

@@ -17,4 +17,4 @@ ttf-nerd-fonts-symbols
hypridle
hyprlock
aur:hyprdim
yay # test_this_thing
yay # test this_thing

View File

@@ -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