Added a call to install apps

This commit is contained in:
Russell Riker 2022-09-08 18:50:22 -04:00
parent 934c3b63ea
commit c89f97bfa1
2 changed files with 8 additions and 0 deletions

View File

@ -13,6 +13,8 @@
# my-apt-apps.sh # my-apt-apps.sh
# Apps I like to have on my machines # 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 # check if I'm logged on to the tilde.team, if so. Dont run this stuff
if [ $HOSTNAME != 'tilde' ]; then if [ $HOSTNAME != 'tilde' ]; then
# Can I check for a a file of apps, and if it's there, read it into $APPS? # Can I check for a a file of apps, and if it's there, read it into $APPS?

View File

@ -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 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