Fix typos
This commit is contained in:
parent
3e94db0969
commit
537938886d
|
@ -24,7 +24,7 @@ while true; do
|
||||||
fi
|
fi
|
||||||
echo "git clone $repo $home_PATH/Repos/dotfiles"
|
echo "git clone $repo $home_PATH/Repos/dotfiles"
|
||||||
if [[ $? == 0 ]]; then
|
if [[ $? == 0 ]]; then
|
||||||
for file in $home_PATH/Repos/*; do
|
for file in $home_PATH/Repos/dotfiles/*; do
|
||||||
echo "ln -s $file $home_PATH/.config/"
|
echo "ln -s $file $home_PATH/.config/"
|
||||||
done
|
done
|
||||||
break
|
break
|
||||||
|
@ -61,7 +61,7 @@ echo ""
|
||||||
echo "sudo pacman -S --noconfirm --needed base-devel"
|
echo "sudo pacman -S --noconfirm --needed base-devel"
|
||||||
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 < $script_PATH/arch-assets/archpkg.txt
|
done < $scripts_PATH/arch-assets/archpkg.txt
|
||||||
|
|
||||||
echo -e "\n\n\n\n"
|
echo -e "\n\n\n\n"
|
||||||
echo ""
|
echo ""
|
||||||
|
@ -83,6 +83,7 @@ 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
|
||||||
echo "sudo ufw allow $sshPort"
|
echo "sudo ufw allow $sshPort"
|
||||||
fi
|
fi
|
||||||
|
echo "systemctl enable ufw"
|
||||||
|
|
||||||
# Setup Printer
|
# Setup Printer
|
||||||
echo "systemctl enable cups"
|
echo "systemctl enable cups"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
while IFS= read -r line ; do
|
while IFS= read -r line ; do
|
||||||
echo "sudo pacman -S --needed $line"
|
echo "sudo pacman -S --noconfirm --needed $line"
|
||||||
done < $1
|
done < $1
|
||||||
|
|
||||||
# Get Blender
|
# Get Blender
|
||||||
|
|
Loading…
Reference in a new issue