my-dotfiles/my-apt-apts.sh

25 lines
807 B
Bash
Raw Normal View History

#!/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
2022-09-05 19:18:17 +00:00
if [ $HOSTNAME != 'tilde' ]; then
sudo apt install curl
sudo apt install lolcat
sudo apt install figlet
sudo apt install lynx
2022-09-05 19:18:17 +00:00
sudo apt install cowsay
fi