Skip to content

Commit 8db6b50

Browse files
committed
Add extra instructions, change apps to install
1 parent adf347a commit 8db6b50

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

Brewfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ tap "homebrew/cask"
33
tap "homebrew/core"
44
brew "git"
55
brew "jq"
6-
cask "1password"
76
cask "authy"
87
cask "bluesnooze"
98
cask "brave-browser"

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@
1515
zip_file="${setup_repo}/repo.zip"
1616
curl --location "$zipball_url" --output "${setup_repo}/repo.zip"
1717
unzip "$zip_file" -d "$setup_repo"
18+
mkdir -p "${HOME}/Library/LaunchAgents"
1819
bash ${setup_repo}/*mac-setup*/setup.sh
1920
```
2021
1. Retrieve SSH private key from password manager and copy it into ~/.ssh/id_rsa
2122
1. Run `eval "$(ssh-agent -s)"`
2223
1. Run `ssh-add --apple-use-keychain ~/.ssh/id_rsa`
23-
1. Start iterm2 and import `iterm2.json` as a profile via the iterm GUI
24+
1. Sync settings for Brave
25+
1. Start iterm2 and import `iterm2.json` as a profile via the iterm GUI (check `Working Directory` is correct)
2426
1. Start Visual Studio Code and sync settings by logging in with GitHub Auth
2527
1. Run the following to update system settings:
2628
```bash

iterm2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"Alpha Component" : 1,
6262
"Green Component" : 0
6363
},
64-
"Working Directory" : "\/Users\/C5323189",
64+
"Working Directory" : "\/Users\/will",
6565
"Blinking Cursor" : false,
6666
"Disable Window Resizing" : true,
6767
"Sync Title" : false,

setup.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,10 @@ dock_item() {
1717
defaults write com.apple.dock persistent-apps -array \
1818
"$(dock_item /Applications/iTerm.app)" \
1919
"$(dock_item /Applications/Visual\ Studio\ Code.app)" \
20-
"$(dock_item /Applications/zoom.us.app)" \
2120
"$(dock_item /Applications/Slack.app)" \
2221
"$(dock_item /Applications/Brave\ Browser.app)" \
2322
"$(dock_item /Applications/Authy\ Desktop.app)" \
24-
"$(dock_item /Applications/1Password\ 7.app)" \
25-
"$(dock_item /Applications/LibreOffice.app)" \
26-
"$(dock_item /Applications/Notion.app)"
23+
"$(dock_item /Applications/LibreOffice.app)"
2724

2825
defaults delete com.apple.dock recent-apps
2926
defaults delete com.apple.dock persistent-others

0 commit comments

Comments
 (0)