Add yay packages list file
This commit is contained in:
parent
283fd7ee86
commit
97f1468b1a
1
arch-assets/yaypkg.txt
Normal file
1
arch-assets/yaypkg.txt
Normal file
|
@ -0,0 +1 @@
|
|||
picom-simpleanims-git
|
10
archsetup.sh
10
archsetup.sh
|
@ -96,6 +96,9 @@ systemctl enable --now sshd
|
|||
# Enable Bluetooth
|
||||
systemctl enable --now bluetooth
|
||||
|
||||
# Enable Wifi
|
||||
systemctl enable --now iwd
|
||||
|
||||
# Setup Yay
|
||||
while true;do
|
||||
read -p "Do you want to install yay? (y/n) " answer
|
||||
|
@ -104,6 +107,9 @@ while true;do
|
|||
mkdir $home_PATH/Software
|
||||
fi
|
||||
git clone https://aur.archlinux.org/yay.git $home_PATH/Software/yay && cd $home_PATH/Software/yay && makepkg -si --noconfirm --needed && cd
|
||||
while IFS= read -r line ; do
|
||||
yay -S --noconfirm --needed $line
|
||||
done < $scripts_PATH/arch-assets/yaypkg.txt
|
||||
break
|
||||
elif [[ "${answer,,}" == "n" ]]; then
|
||||
break
|
||||
|
@ -143,10 +149,6 @@ while true; do
|
|||
fi
|
||||
done
|
||||
|
||||
# Installing Fdev's picom
|
||||
|
||||
yay -S --noconfirm --needed picom-simpleanims-git
|
||||
|
||||
# Setting up my bash
|
||||
|
||||
echo -ne "
|
||||
|
|
Loading…
Reference in a new issue