make safety changes to packages that are installed. No yay packages installed without explicit request from the user
This commit is contained in:
parent
cc96645899
commit
2c4f0238b2
|
@ -1,3 +1,4 @@
|
|||
nvidia-utils
|
||||
lib32-nvidia-utils
|
||||
ttf-liberation
|
||||
steam
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
base-devel
|
||||
less
|
||||
xorg-apps
|
||||
nvidia-settings
|
||||
arandr
|
||||
bash-completion
|
||||
fastfetch
|
||||
kitty
|
||||
alacritty
|
||||
xclip
|
||||
|
@ -12,7 +15,7 @@ bluez-utils
|
|||
blueman
|
||||
feh
|
||||
nitrogen
|
||||
dolphin
|
||||
thunar
|
||||
lf
|
||||
flameshot
|
||||
polybar
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
picom-simpleanims-git
|
||||
betterlockscreen
|
||||
|
|
|
@ -96,9 +96,6 @@ 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
|
||||
|
@ -107,9 +104,6 @@ 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
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
while IFS= read -r line ; do
|
||||
echo "sudo pacman -S --noconfirm --needed $line"
|
||||
sudo pacman -S --noconfirm --needed $line
|
||||
done < $1
|
||||
|
||||
# Get Blender
|
||||
|
|
|
@ -3,4 +3,3 @@
|
|||
while IFS= read -r line ; do
|
||||
sudo pacman -S --noconfirm --needed $line
|
||||
done < $1
|
||||
sudo pacman -S --noconfirm --needed steam
|
||||
|
|
Loading…
Reference in a new issue