Last active
March 24, 2025 12:24
-
-
Save fabdrol/c8c569c111361855852939b9d71a319a to your computer and use it in GitHub Desktop.
SYT Initial Setup Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
xcode-select --install | |
softwareupdate --install-rosetta --agree-to-license | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"; | |
(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> ~/.zprofile | |
eval "$(/opt/homebrew/bin/brew shellenv)" | |
brew install dockutil | |
brew install --cask slack | |
brew install --cask google-chrome | |
brew install --cask visual-studio-code | |
brew install --cask iterm2 | |
brew install --cask notion | |
brew install --cask figma | |
brew install --cask google-drive | |
brew install --cask lastpass | |
brew install --cask adobe-acrobat-reader | |
dockutil --no-restart --remove 'Safari' | |
dockutil --no-restart --remove 'Mail' | |
dockutil --no-restart --remove 'Messages' | |
dockutil --no-restart --remove 'Maps' | |
dockutil --no-restart --remove 'Photos' | |
dockutil --no-restart --remove 'FaceTime' | |
dockutil --no-restart --remove 'Calendar' | |
dockutil --no-restart --remove 'Contacts' | |
dockutil --no-restart --remove 'Freeform' | |
dockutil --no-restart --remove 'TV' | |
dockutil --no-restart --remove 'Music' | |
dockutil --no-restart --remove 'Keynote' | |
dockutil --no-restart --remove 'Numbers' | |
dockutil --no-restart --remove 'Pages' | |
dockutil --remove 'App Store' | |
dockutil --no-restart --add '/Applications/Google Chrome.app' | |
dockutil --no-restart --add '/Applications/Slack.app' | |
dockutil --no-restart --add '/Applications/Visual Studio Code.app' | |
dockutil --no-restart --add '/Applications/iTerm.app' | |
dockutil --no-restart --add '/Applications/Notion.app' | |
dockutil --no-restart --add '/Applications/Figma.app' | |
dockutil --no-restart --add '/Applications/Google Drive.app' | |
dockutil --no-restart --add '/Applications/LastPass.app' | |
dockutil --add '/Applications/Adobe Acrobat Reader.app' | |
open /System/Library/PreferencePanes/Security.prefPane |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment