fixed package list

This commit is contained in:
2023-04-02 21:48:02 -05:00
parent 799387d91a
commit f43b2a2831
2 changed files with 79 additions and 929 deletions

View File

@@ -3,3 +3,14 @@ mv ~/.bashrc ~/.bashrc.bak
ln -s .bashrc ~/.bashrc
ln -s .bash_aliases ~/.bash_aliases
touch ~/.bashlocal
echo "Would you like to intall the contents of the package list in the arch foler? (yes/no)"
read answer
if [ "$answer" == "yes" ] || [ "$answer" == "y" ]; then
echo "Fuck yeah"
sudo pacman -S --needed $(\cat arch/pkglist.txt)
else
echo "Exiting the script."
exit 0
fi