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
|
nvidia-utils
|
||||||
lib32-nvidia-utils
|
lib32-nvidia-utils
|
||||||
ttf-liberation
|
ttf-liberation
|
||||||
|
steam
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
base-devel
|
base-devel
|
||||||
|
less
|
||||||
xorg-apps
|
xorg-apps
|
||||||
nvidia-settings
|
nvidia-settings
|
||||||
|
arandr
|
||||||
bash-completion
|
bash-completion
|
||||||
|
fastfetch
|
||||||
kitty
|
kitty
|
||||||
alacritty
|
alacritty
|
||||||
xclip
|
xclip
|
||||||
|
@ -12,7 +15,7 @@ bluez-utils
|
||||||
blueman
|
blueman
|
||||||
feh
|
feh
|
||||||
nitrogen
|
nitrogen
|
||||||
dolphin
|
thunar
|
||||||
lf
|
lf
|
||||||
flameshot
|
flameshot
|
||||||
polybar
|
polybar
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
picom-simpleanims-git
|
picom-simpleanims-git
|
||||||
betterlockscreen
|
|
||||||
|
|
|
@ -96,9 +96,6 @@ 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
|
||||||
|
@ -107,9 +104,6 @@ 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
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
while IFS= read -r line ; do
|
while IFS= read -r line ; do
|
||||||
echo "sudo pacman -S --noconfirm --needed $line"
|
sudo pacman -S --noconfirm --needed $line
|
||||||
done < $1
|
done < $1
|
||||||
|
|
||||||
# Get Blender
|
# Get Blender
|
||||||
|
|
|
@ -3,4 +3,3 @@
|
||||||
while IFS= read -r line ; do
|
while IFS= read -r line ; do
|
||||||
sudo pacman -S --noconfirm --needed $line
|
sudo pacman -S --noconfirm --needed $line
|
||||||
done < $1
|
done < $1
|
||||||
sudo pacman -S --noconfirm --needed steam
|
|
||||||
|
|
Loading…
Reference in a new issue