Update scripts with missing tweaks that were found on last install

This commit is contained in:
Rodolfo Barcelli Jo 2024-07-10 00:54:59 +08:00
parent 9ef144dfd0
commit 283fd7ee86
4 changed files with 23 additions and 25 deletions

View file

@ -1,2 +1,3 @@
krita
inkscape
git-lfs

View file

@ -1,4 +1,6 @@
base-devel
xorg-apps
nvidia-settings
bash-completion
kitty
alacritty
@ -36,3 +38,4 @@ python-pip
discord
flatpak
zathura
pavucontrol

View file

@ -85,10 +85,16 @@ read -p "Would you like to set an alternate SSH port? (Empty to skip) " sshPort
if [[ ! -z $sshPort && $sshPort =~ ^[0-9]+$ ]]; then
sudo ufw allow $sshPort
fi
systemctl enable ufw
sudo ufw enable
# Setup Printer
systemctl enable cups
# Enable Printer
systemctl enable --now cups
# Enable SSH
systemctl enable --now sshd
# Enable Bluetooth
systemctl enable --now bluetooth
# Setup Yay
while true;do
@ -137,24 +143,14 @@ while true; do
fi
done
# Build pijulius's Picom
# Installing Fdev's picom
while true; do
read -p "Do you want to install the Pijulius's Picom? (y/n) " answer
if [[ "${answer,,}" == "y" ]]; then
while IFS= read -r line ; do
sudo pacman -S --noconfirm --needed $line
done < $scripts_PATH/arch-assets/pijuliuspkgs.txt
git clone -b implement-window-animations https://github.com/pijulius/picom $home_PATH/Software/picom
cd $home_PATH/Software/picom && git submodule update --init --recursive && meson --buildtype=release . build && ninja -C build && ninja -C build install
cd ""
break
elif [[ "${answer,,}" == "n" ]]; then
break
else
echo "Invalid Response (y/n)"
fi
done
yay -S --noconfirm --needed picom-simpleanims-git
# Setting up my bash
echo -ne "
source .config/bash/my_bashrc.sh" >> $home_PATH/.bashrc
echo -e "\n\n\n\n"
echo ""
@ -195,5 +191,3 @@ while true; do
echo "Invalid Response (y/n)"
fi
done

View file

@ -1,8 +1,8 @@
#!/bin/bash
#while IFS= read -r line ; do
# echo "sudo pacman -S --noconfirm --needed $line"
#done < $1
while IFS= read -r line ; do
echo "sudo pacman -S --noconfirm --needed $line"
done < $1
# Get Blender
while true; do