Skip to content

Instantly share code, notes, and snippets.

@frbayart
Last active December 29, 2022 22:09
Show Gist options
  • Save frbayart/40e75a1df8423cba84897e6639f0c2f2 to your computer and use it in GitHub Desktop.
Save frbayart/40e75a1df8423cba84897e6639f0c2f2 to your computer and use it in GitHub Desktop.
Reminder for Fresh Install
# 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"
#! /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