commit 506b396cf9ae37ab3f31be4b82b786c515708b33 parent 05d820e7c5defa807c2a4e9e13aa88c612066a7c Author: Markus Hanetzok <markus@hanetzok.net> Date: Mon, 27 Oct 2025 00:10:05 +0100 extract AUR installs in separate script Diffstat:
| A | aur-install.sh | | | 6 | ++++++ |
| M | post-install.sh | | | 1 | - |
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/aur-install.sh b/aur-install.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +while IFS=$'\n' read -r prog; do + echo "Installing $prog..." + yay --noconfirm -S "$prog" > /dev/null +done < ./aur.list diff --git a/post-install.sh b/post-install.sh @@ -30,7 +30,6 @@ echo "Include = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf pacman -Syu --noconfirm --needed zsh cp ./progs.list /tmp -cp ./aur.list /tmp cd /tmp echo "!!! Set ROOT password !!!"