add hushlogin

This commit is contained in:
Stephen Parkinson
2021-10-25 09:38:18 -07:00
parent 52070bdaca
commit 588214d044
2 changed files with 8 additions and 6 deletions

View File

@@ -2,10 +2,11 @@
OSTYPE=$(uname -s)
# get package manager up to date
# assume were on ubuntu because thats reasonable
# and get package manager up to date
if [ "$OSTYPE" = "Linux" ]; then
sudo apt update
sudo apt install coreutils zsh net-tools jq -y
sudo apt install coreutils zsh net-tools jq python3-pip -y
sudo apt upgrade -y
elif [ "$OSTYPE" = "Darwin" ]; then
echo "Install Homebrew? [y/n]"
@@ -16,6 +17,9 @@ elif [ "$OSTYPE" = "Darwin" ]; then
fi
fi
# silence login message
touch .hushlogin
# get ohmyzsh setup
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh/