diff --git a/arch-assets/archgamedevpkg.txt b/arch-assets/archgamedevpkg.txt index 7e34c9c..3b1aba1 100644 --- a/arch-assets/archgamedevpkg.txt +++ b/arch-assets/archgamedevpkg.txt @@ -1,3 +1,2 @@ krita git-lfs - diff --git a/scripts/archgamedevsetup.sh b/scripts/archgamedevsetup.sh index 3501b37..ece1e61 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 @@ -10,15 +10,15 @@ while true; do read -p "Please enter the release of blender you want (eg. 4.1): " blender if [[ ! -z $blender ]]; then if [[ ! -d /home/$(whoami)/Software ]]; then - "mkdir /home/$(whoami)/Software" + mkdir /home/$(whoami)/Software fi - cd "/home/$(whoami)/Software" + cd /home/$(whoami)/Software count=9 while [ $count -ge 0 ]; do - echo "wget 'https://download.blender.org/release/Blender$blender/blender-$blender.$count-linux-x64.tar.xz'" + wget "https://download.blender.org/release/Blender$blender/blender-$blender.$count-linux-x64.tar.xz" if [[ $? == 0 ]]; then blenderversion="blender-$blender.$count-linux-x64.tar.xz" - echo "cd /home/$(whoami)/Software/ && tar -xvf $blenderversion" + cd /home/$(whoami)/Software/ && tar -xvf $blenderversion break fi ((count--)) diff --git a/scripts/archgamingsetup.sh b/scripts/archgamingsetup.sh index b7f4ccd..7556030 100644 --- a/scripts/archgamingsetup.sh +++ b/scripts/archgamingsetup.sh @@ -1,6 +1,6 @@ #!/bin/bash while IFS= read -r line ; do - echo "sudo pacman -S --noconfirm --needed $line" + sudo pacman -S --noconfirm --needed $line done < $1 -echo "sudo pacman -S --needed steam" +sudo pacman -S --noconfirm --needed steam