diff --git a/arch-assets/archgamedevpkg.txt b/arch-assets/archgamedevpkg.txt index 3b1aba1..7c46593 100644 --- a/arch-assets/archgamedevpkg.txt +++ b/arch-assets/archgamedevpkg.txt @@ -1,2 +1,3 @@ krita +inkscape git-lfs diff --git a/arch-assets/archpkg.txt b/arch-assets/archpkg.txt index cd36a98..1393319 100644 --- a/arch-assets/archpkg.txt +++ b/arch-assets/archpkg.txt @@ -1,4 +1,6 @@ base-devel +xorg-apps +nvidia-settings bash-completion kitty alacritty @@ -36,3 +38,4 @@ python-pip discord flatpak zathura +pavucontrol diff --git a/archsetup.sh b/archsetup.sh index 128a63d..9ba2aa2 100755 --- a/archsetup.sh +++ b/archsetup.sh @@ -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 - - diff --git a/scripts/archgamedevsetup.sh b/scripts/archgamedevsetup.sh index ece1e61..ccac99f 100755 --- a/scripts/archgamedevsetup.sh +++ b/scripts/archgamedevsetup.sh @@ -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