2023-11-03 07:49:00 -04:00
|
|
|
#!/bin/zsh
|
|
|
|
|
2023-11-07 03:42:21 -05:00
|
|
|
# Comment this line out if you don't have Touch ID
|
2023-11-03 07:49:00 -04:00
|
|
|
awk 'NR==2 {print "auth sufficient pam_tid.so"} 1' /etc/pam.d/sudo | sudo tee /etc/pam.d/sudo
|
|
|
|
|
|
|
|
# Verify SSH Fingerprints
|
|
|
|
echo "VerifyHostKeyDNS yes" | sudo tee /etc/ssh/ssh_config.d/10-custom.conf
|
|
|
|
sudo chmod 644 /etc/ssh/ssh_config.d/10-custom.conf
|
|
|
|
|
|
|
|
#Enable Safari debug menu
|
|
|
|
defaults write com.apple.Safari IncludeInternalDebugMenu 1
|
|
|
|
|
2023-11-07 03:42:21 -05:00
|
|
|
#I nstall Brew
|
2023-11-03 07:49:00 -04:00
|
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
2023-11-03 18:37:39 -04:00
|
|
|
brew tap homebrew/autoupdate
|
|
|
|
brew tap homebrew/cask-versions
|
2023-11-07 13:19:52 -05:00
|
|
|
brew install --cask android-platform-tools chronycontrol ffmpeg github gpg-suite-no-mail microsoft-edge mullvadvpn orbstack powershell visual-studio-code yt-dlp
|
2023-11-07 03:39:44 -05:00
|
|
|
brew install gnu-sed
|
|
|
|
echo 'PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"' >> /etc/zshrc
|