From a9bd02086bf7fc54492abd6a98e3565b3ea9b85d Mon Sep 17 00:00:00 2001 From: Russell Riker Date: Mon, 5 Sep 2022 14:35:34 -0400 Subject: [PATCH] Updated readme. Inital commit of my-apt-apts.sh --- README.md | 8 ++++++++ my-apt-apts.sh | 24 ++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100755 my-apt-apts.sh diff --git a/README.md b/README.md index 444a0f1..6b0d41d 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,11 @@ ### Why? One Repo to rule them all! Would like to come up with a script that is part of this repo that would setup all the symlinks to the files when I have a new linux vm or pc. + +### mysetup.sh + +Working on a setup script that will setup all +* Symlinks +* Grab needed repos +* if my machine will install need apps I like to have + diff --git a/my-apt-apts.sh b/my-apt-apts.sh new file mode 100755 index 0000000..c27aa77 --- /dev/null +++ b/my-apt-apts.sh @@ -0,0 +1,24 @@ +#!/usr/bin/bash + +########################################################################## +# +# ____ ___ __ __ ____ _____ / /_ ____ _____ ____ _____ +# / __ `__ \/ / / /_____/ __ `/ __ \/ __/_____/ __ `/ __ \/ __ \/ ___/ +# / / / / / / /_/ /_____/ /_/ / /_/ / /_/_____/ /_/ / /_/ / /_/ (__ ) +# /_/ /_/ /_/\__, / \__,_/ .___/\__/ \__,_/ .___/ .___/____/ +# /____/ /_/ /_/ /_/ +# +######################################################################### +# my-apt-apps.sh +# Apps I like to have on my machines + +# check if I'm logged on to the tilde.team, if so. Dont run this stuff +if [$HOSTNAME -ne 'tilde']; then + sudo apt install curl + sudo apt install lolcat + sudo apt install figlet + sudo apt install lynx + +fi + +