Skip to content

Commit

Permalink
feat(bootstrap): add 1P for Safari, run stow
Browse files Browse the repository at this point in the history
  • Loading branch information
minusfive committed Aug 27, 2024
1 parent c801e2f commit 8696554
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ git clone git@github.com:minusfive/dotfiles.git ~/.dotfiles
cd ~/.dotfiles
# run bootstrap script to install core tools / apps
./scripts/bootstrap.sh
# run stow to symlink all configuration files
stow -vR .
```

## To Do
Expand Down
1 change: 1 addition & 0 deletions scripts/Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ cask 'discord'
cask 'gpg-suite'

mas 'WhatsApp Messenger', id: 310_633_997
mas '1Password for Safari', id: 1_569_813_296
8 changes: 6 additions & 2 deletions scripts/Brewfile.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -860,14 +860,18 @@
}
},
"mas": {
"WhatsApp Messenger": null
"WhatsApp Messenger": null,
"1Password for Safari": {
"id": "1569813296",
"version": "2.27.1"
}
}
},
"system": {
"macos": {
"sonoma": {
"HOMEBREW_VERSION": "4.3.18",
"HOMEBREW_PREFIX": "/usr/local",
"HOMEBREW_PREFIX": "/opt/homebrew",
"Homebrew/homebrew-core": "api",
"CLT": "15.3.0.0.1.1708646388",
"Xcode": "15.4",
Expand Down
8 changes: 8 additions & 0 deletions scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,11 @@ fi

# Update OhMyZsh, plugins and themes
zsh $HOME/.oh-my-zsh/tools/upgrade.sh

# Symlink dotfiles
if [[ $(command -v stow) != "" ]]; then
echo "- GNU Stow found, symlinking dotfiles"
stow -vR .
else
echo "- GNU Stow not found."
fi

0 comments on commit 8696554

Please sign in to comment.