9 lines
187 B
Text
9 lines
187 B
Text
|
#!/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
|