dotfiles/dot_scripts/install_macpackages.sh
2020-07-14 10:37:24 +02:00

11 lines
262 B
Bash
Executable File

#!/usr/bin/env bash
# Install dependencies (apps, fonts, ...) with Brew
case "$(uname -s)" in
Darwin)
echo "(Mac OS X) Brew installing stuff (apps, fonts, ...)"
ln -snf ~/Code/dotfiles/Brewfile ~/Brewfile
brew bundle
;;
esac