Skip to content

Instantly share code, notes, and snippets.

@kishaningithub
Last active March 27, 2026 15:16
Show Gist options
  • Select an option

  • Save kishaningithub/850f5cc96f57a87c017d2fec93416c46 to your computer and use it in GitHub Desktop.

Select an option

Save kishaningithub/850f5cc96f57a87c017d2fec93416c46 to your computer and use it in GitHub Desktop.
This script installs the bare minimum for a new machine
set -e
exists()
{
command -v "$1" >/dev/null 2>&1
}
if exists brew; then
echo "homebrew already exists... skipping..."
else
echo "Installing homebrew..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
export PATH="$(brew --prefix)/bin:$PATH"
fi
brew install keybase
@kishaningithub
Copy link
Copy Markdown
Author

kishaningithub commented Mar 27, 2026

Setting up a new mac machine

Run the following command

$SHELL <(curl -sSfL https://gist.githubusercontent.com/kishaningithub/850f5cc96f57a87c017d2fec93416c46/raw/bootstrap.sh)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment