Last active
December 29, 2022 22:09
-
-
Save frbayart/40e75a1df8423cba84897e6639f0c2f2 to your computer and use it in GitHub Desktop.
Reminder for Fresh Install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/Homebrew/homebrew-bundle | |
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-fonts" | |
tap "homebrew/core" | |
# set arguments for all 'brew install --cask' commands | |
cask_args appdir: "~/Applications", require_sha: true | |
# CASK | |
cask "1password" | |
cask "1password-cli" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
# | |
# | |
xcode-select --install | |
if [[ $? -eq 1 ]]; | |
then | |
softwareupdate --install -a | |
fi | |
if [[ $(which brew) -eq 1 ]]; | |
then | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
fi | |
wget -O Brewfile https://gist.githubusercontent.com/frbayart/40e75a1df8423cba84897e6639f0c2f2/raw/e045ad2065993757dc23e24587aa4a49d63d1cde/Brewfile | |
brew bundle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment