Compare commits

..

No commits in common. "d9e78a9ae15ffb4ef90a79f20634c9190e2c9970" and "aecbf68661cc7f566f331e5dcd1545cac6b7d9d9" have entirely different histories.

2 changed files with 0 additions and 39 deletions

View file

@ -123,28 +123,6 @@ echo "cd $font_PATH && tar -xvf JetBrainsMono.tar.xz"
echo "cd ''"
echo ""
# Build pijulius's Picom
while true; do
read -p "Do you want to install the Pijulius's Picom? (y/n) " answer
if [[ "${answer,,}" == "y" ]]; then
echo "sudo pacman -S --noconfirm --needed "
echo "git clone https://github/pijulius/picom $home_PATH/Software/picom"
echo "cd $home_PATH/Software/picom"
echo "git checkout implemented-window-animations"
echo "git submodule update --init --recursive"
echo "meson --buildtype=release . build"
echo "ninja -C build"
echo "ninja -C build install"
echo "cd ''"
break
elif [[ "${answer,,}" == "n" ]]; then
break
else
echo "Invalid Response (y/n)"
fi
done
echo -e "\n\n\n\n"
echo ""
echo "=================="

View file

@ -11,23 +11,6 @@ echo " Intro "
echo "==============="
echo ""
# Check for Repos directory
if [[ ! -d /home/$(whoami)/Repos ]]; then
echo "mkdir /home/$(whoami)/Repos"
fi
# Check for git
if [[ ! -f /bin/git ]]; then
echo "Authentication Is Required. Enter $username's password"
echo "sudo pacman -S --noconfirm --needed git"
echo ""
fi
if [[ ! -d /home/$(whoami)/Repos/arch-automated-installer ]]; then
echo "git clone https://gitea.barcelli.net/rodolfo/arch-automated-installer /home/$(whoami)/Repos/arch-automated-installer"
echo "cd /home/$(whoami)/Repos/arch-automated-installer"
fi
script_PATH=$(pwd)
if [[ -d /etc/apt ]]; then