Skip to content

Commit 943e766

Browse files
committed
added install YAY
1 parent 2a1088f commit 943e766

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

POST_INSTALL.sh

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
echo Installing AUR packages
4+
pacman -Syu
5+
6+
for PACKAGE in /FILES/AUR_PACKAGES/*.zst
7+
do
8+
echo Installing ${PACKAGE}
9+
pacman -U "${PACKAGE}" --needed --noconfirm
10+
done
11+

0 commit comments

Comments
 (0)