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
|
# Enable Bluetooth
|
||||||
systemctl enable --now bluetooth
|
systemctl enable --now bluetooth
|
||||||
|
|
||||||
|
# Enable Wifi
|
||||||
|
systemctl enable --now iwd
|
||||||
|
|
||||||
# Setup Yay
|
# Setup Yay
|
||||||
while true;do
|
while true;do
|
||||||
read -p "Do you want to install yay? (y/n) " answer
|
read -p "Do you want to install yay? (y/n) " answer
|
||||||
|
@ -104,6 +107,9 @@ while true;do
|
||||||
mkdir $home_PATH/Software
|
mkdir $home_PATH/Software
|
||||||
fi
|
fi
|
||||||
git clone https://aur.archlinux.org/yay.git $home_PATH/Software/yay && cd $home_PATH/Software/yay && makepkg -si --noconfirm --needed && cd
|
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
|
break
|
||||||
elif [[ "${answer,,}" == "n" ]]; then
|
elif [[ "${answer,,}" == "n" ]]; then
|
||||||
break
|
break
|
||||||
|
@ -143,10 +149,6 @@ while true; do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# Installing Fdev's picom
|
|
||||||
|
|
||||||
yay -S --noconfirm --needed picom-simpleanims-git
|
|
||||||
|
|
||||||
# Setting up my bash
|
# Setting up my bash
|
||||||
|
|
||||||
echo -ne "
|
echo -ne "
|
||||||
|
|
Loading…
Reference in a new issue