Compare commits

..

No commits in common. "863f6df3f8866c622bd24b5e43ff9c91dac355ae" and "3e94db096936148eccf045789eb41c6b54eae603" have entirely different histories.

3 changed files with 3 additions and 50 deletions

View file

@ -24,7 +24,7 @@ while true; do
fi
echo "git clone $repo $home_PATH/Repos/dotfiles"
if [[ $? == 0 ]]; then
for file in $home_PATH/Repos/dotfiles/*; do
for file in $home_PATH/Repos/*; do
echo "ln -s $file $home_PATH/.config/"
done
break
@ -61,7 +61,7 @@ echo ""
echo "sudo pacman -S --noconfirm --needed base-devel"
while IFS= read -r line ; do
echo "sudo pacman -S --noconfirm --needed $line"
done < $scripts_PATH/arch-assets/archpkg.txt
done < $script_PATH/arch-assets/archpkg.txt
echo -e "\n\n\n\n"
echo ""
@ -83,7 +83,6 @@ read -p "Would you like to set an alternate SSH port? (Empty to skip) " sshPort
if [[ ! -z $sshPort && $sshPort =~ ^[0-9]+$ ]]; then
echo "sudo ufw allow $sshPort"
fi
echo "systemctl enable ufw"
# Setup Printer
echo "systemctl enable cups"

View file

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

View file

@ -1,46 +0,0 @@
#!/bin/bash
if [[ $(whoami) == "root" ]]; then
echo "Do not run as root!"
exit 2
fi
echo ""
echo "==============="
echo " Intro "
echo "==============="
echo ""
script_PATH=$(pwd)
if [[ -d /etc/apt ]]; then
while true; do
read -p "Are you using a Debian? (y/n)" answer
if [[ "${answer,,}" == "y" ]]; then
echo "bash script_PATH/debiansetup.sh"
break
elif [[ "${answer,,}" == "n" ]]; then
echo "Use a compatible system (Debian/Arch)"
break
else
echo "Invalid input 'y/n'"
fi
done
elif [[ -d /etc/pacman ]]; then
while true; do
read -p "Are you using a Arch? (y/n)" answer
echo "${answer,,}"
if [[ "${answer,,}" == "y" ]]; then
echo "bash script_PATH/archsetup.sh"
break
elif [[ "${answer,,}" == "n" ]]; then
echo "Use a compatible system (Debian/Arch)"
break
else
echo "Invalid input 'y/n'"
fi
done
else
echo "Error: Could not identify system."
exit 2
fi