dotfiles/.config/yadm/bootstrap.d/02-packages

9 lines
187 B
Text
Raw Normal View History

2025-02-21 07:46:27 +00:00
#!/bin/bash
while read -r line; do
if paru -Q $line; then
echo "$line installed"
else
paru -S --noconfirm $line
fi
done <$HOME/.config/yadm/files/packages.txt