Cleanup install

This commit is contained in:
Andrew Tomaka 2022-09-14 09:12:16 -04:00
parent a77f02c7bf
commit 6d8aa31c95
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE

View file

@ -84,13 +84,15 @@ install_vim() {
install_linux() {
if ! command -v apt-get > /dev/null; then
echo apt-get is not required, but not available
echo apt-get is required, but not available
exit 1
fi
DEBIAN_FRONTEND=noninteractive sudo apt-get install --assume-yes \
build-essential procps curl file git cmake pkg-config libfreetype6-dev \
libfontconfig1-dev libxcb-xfixes0-dev libxkbcommon-dev python3
packages="build-essential procps curl file git cmake pkg-config\
libfreetype6-dev libfontconfig1-dev libxcb-xfixes0-dev\
libxkbcommon-dev python3"
dpkg -s $packages >/dev/null 2>&1 \
|| sudo apt-get install --assume-yes $packages
install_homebrew
source ~/dotfiles/zsh/.zshenv