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 krita
inkscape
git-lfs git-lfs

View file

@ -1,4 +1,6 @@
base-devel base-devel
xorg-apps
nvidia-settings
bash-completion bash-completion
kitty kitty
alacritty alacritty
@ -36,3 +38,4 @@ python-pip
discord discord
flatpak flatpak
zathura 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 if [[ ! -z $sshPort && $sshPort =~ ^[0-9]+$ ]]; then
sudo ufw allow $sshPort sudo ufw allow $sshPort
fi fi
systemctl enable ufw sudo ufw enable
# Setup Printer # Enable Printer
systemctl enable cups systemctl enable --now cups
# Enable SSH
systemctl enable --now sshd
# Enable Bluetooth
systemctl enable --now bluetooth
# Setup Yay # Setup Yay
while true;do while true;do
@ -137,24 +143,14 @@ while true; do
fi fi
done done
# Build pijulius's Picom # Installing Fdev's picom
while true; do yay -S --noconfirm --needed picom-simpleanims-git
read -p "Do you want to install the Pijulius's Picom? (y/n) " answer
if [[ "${answer,,}" == "y" ]]; then # Setting up my bash
while IFS= read -r line ; do
sudo pacman -S --noconfirm --needed $line echo -ne "
done < $scripts_PATH/arch-assets/pijuliuspkgs.txt source .config/bash/my_bashrc.sh" >> $home_PATH/.bashrc
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
echo -e "\n\n\n\n" echo -e "\n\n\n\n"
echo "" echo ""
@ -195,5 +191,3 @@ while true; do
echo "Invalid Response (y/n)" echo "Invalid Response (y/n)"
fi fi
done done

View file

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