my-dotfiles/my-apt-apts.sh

25 lines
807 B
Bash
Executable File

#!/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 != 'tilde' ]; then
sudo apt install curl
sudo apt install lolcat
sudo apt install figlet
sudo apt install lynx
sudo apt install cowsay
fi