Last active
May 16, 2024 21:20
-
-
Save keeth/fc9ea571160f46221c0076717f2968ea to your computer and use it in GitHub Desktop.
New Mac Setup Commands
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 | |
# homebew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | |
# essential cli | |
brew install\ | |
bash\ | |
python\ | |
go\ | |
nvm\ | |
wget\ | |
jq\ | |
imagemagick\ | |
ffmpeg | |
# bash-it | |
sudo chsh -s /opt/homebrew/bin/bash "$USER" | |
echo 'export BASH_SILENCE_DEPRECATION_WARNING=1' >> ~/.bash_profile | |
git clone --depth=1 https://github.com/Bash-it/bash-it.git ~/.bash_it | |
~/.bash_it/install.sh | |
# apps | |
brew install --cask\ | |
docker\ | |
slack\ | |
google-chrome\ | |
grandperspective\ | |
spotify\ | |
vlc\ | |
arq\ | |
transmission\ | |
figma\ | |
cursor\ | |
obsidian\ | |
macvim\ | |
adobe-acrobat-reader\ | |
audacity\ | |
discord\ | |
inkscape\ | |
microsoft-teams\ | |
ngrok\ | |
peakhour\ | |
wireshark\ | |
mambaforge\ | |
zoom |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment