Updated readme. Inital commit of my-apt-apts.sh

This commit is contained in:
Russell Riker 2022-09-05 14:35:34 -04:00
parent 1086072237
commit a9bd02086b
2 changed files with 32 additions and 0 deletions

View File

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

24
my-apt-apts.sh Executable file
View File

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