From 0241eee31ed3576d0615b9a3c80f30a1423235d4 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 8 Jan 2026 22:20:58 -0500 Subject: [PATCH] [bin] Add bootstrap script --- bin/.bin/bootstrap.sh | 19 +++++++++++++++++++ ssh/.ssh/config | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100755 bin/.bin/bootstrap.sh diff --git a/bin/.bin/bootstrap.sh b/bin/.bin/bootstrap.sh new file mode 100755 index 0000000..b4f3625 --- /dev/null +++ b/bin/.bin/bootstrap.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env sh + +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +case "$(uname -s)" in +Linux) + echo "Linux bootstrapping not implemented yet" + eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" + ;; +Darwin) + eval "$(/opt/homebrew/bin/brew shellenv)" + ;; +esac +brew install stow pass just fzf direnv + +git clone https://code.unbl.ink/secstate/dotfiles ~/.dotfiles +(cd ~/.dotfiles && make) +git clone --depth=1 https://github.com/ohmyzsh/ohmyzsh ~/.oh-my-zsh +source ~/.zshrc +scp powellc@192.168.40.208:~/.gnupg ~/. diff --git a/ssh/.ssh/config b/ssh/.ssh/config index 57d11ea..28bf4a2 100644 --- a/ssh/.ssh/config +++ b/ssh/.ssh/config @@ -10,7 +10,7 @@ Include /Users/powellc/.colima/ssh_config # Host * IdentityAgent $SSH_AUTH_SOCK - PreferredAuthentications publickey + #PreferredAuthentications publickey IdentitiesOnly no Host github.com