initial commit

This commit is contained in:
2023-06-25 06:46:53 -04:00
commit dc24aada7b
9 changed files with 145 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
if [ "$EUID" -ne 0 ]; then
echo "Must run as root!"
exit
fi
echo "====> Downloading official packages"
echo
# --noconfirm selects all packages from groups
pacman -Sy --needed $(<packages-official.txt)