diff --git a/my-apt-apts.sh b/my-apt-apts.sh index d517e36..8680509 100755 --- a/my-apt-apts.sh +++ b/my-apt-apts.sh @@ -1,5 +1,6 @@ #!/usr/bin/bash + ########################################################################## # # ____ ___ __ __ ____ _____ / /_ ____ _____ ____ _____ @@ -14,11 +15,22 @@ # check if I'm logged on to the tilde.team, if so. Dont run this stuff if [ $HOSTNAME != 'tilde' ]; then - sudo apt install curl - sudo apt install lolcat - sudo apt install figlet - sudo apt install lynx - sudo apt install cowsay -fi + # Can I check for a a file of apps, and if it's there, read it into $APPS? + if [ -f ~/mydev/my-dotfiles/my-apps.txt ]; then + while read APPS + do + echo "\n******************************************\n Installing: $APPS" + sudo apt install $APPS + done < my-apps.txt + fi # End If apps file lookup + +# for APPS in curl lolcat figlet cowsay lynx +# do +# sudo apt install $APPS +# echo "Intalling $APPS" +# echo " " +# done + +fi # endif HOSTNAME