From c89f97bfa1de43eeed400bfcb312d1018e840095 Mon Sep 17 00:00:00 2001 From: Russell Riker Date: Thu, 8 Sep 2022 18:50:22 -0400 Subject: [PATCH] Added a call to install apps --- my-apt-apts.sh | 2 ++ mysetup.sh | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/my-apt-apts.sh b/my-apt-apts.sh index 8680509..4e2c705 100755 --- a/my-apt-apts.sh +++ b/my-apt-apts.sh @@ -13,6 +13,8 @@ # my-apt-apps.sh # Apps I like to have on my machines +echo "**************** Install apps *********************" + # check if I'm logged on to the tilde.team, if so. Dont run this stuff if [ $HOSTNAME != 'tilde' ]; then # Can I check for a a file of apps, and if it's there, read it into $APPS? diff --git a/mysetup.sh b/mysetup.sh index c1ec49f..c5f8ce4 100755 --- a/mysetup.sh +++ b/mysetup.sh @@ -56,3 +56,9 @@ ln -fs ~/mydev/my-dotfiles/fzf-plugin-settings.vim ~/.config/nvim/fzf-plugin-set ln -fs ~/mydev/my-dotfiles/nvim-basic-settings.vim ~/.config/nvim/nvim-basic-settings.vim +# Run the apt installer script +if [ -f ./my-apt-apts.sh ]; then + . ./my-apt-apts.sh +fi + +