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
|
|
|
|
|
2023-11-11 16:51:43 -05:00
|
|
|
# Protect Home
|
2023-11-13 15:22:32 -05:00
|
|
|
for user in $(ls /Users | grep -v 'Shared'); do
|
|
|
|
sudo chmod 700 /Users/$user
|
|
|
|
done
|
2023-11-11 16:51:43 -05:00
|
|
|
|
2023-11-03 07:49:00 -04:00
|
|
|
# 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-12-24 02:10:11 -05:00
|
|
|
(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/$(USERS)/.zprofile
|
|
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
|
|
echo "export HOMEBREW_NO_ANALYTICS=1" >> /etc/zshrc
|
|
|
|
export HOMEBREW_NO_ANALYTICS=1
|
2023-11-03 18:37:39 -04:00
|
|
|
brew tap homebrew/autoupdate
|
|
|
|
brew tap homebrew/cask-versions
|
2023-11-11 07:08:17 -05:00
|
|
|
brew install --cask android-platform-tools chronycontrol github gpg-suite-no-mail microsoft-edge mullvadvpn orbstack powershell visual-studio-code
|
2023-11-07 03:39:44 -05:00
|
|
|
brew install gnu-sed
|
|
|
|
echo 'PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"' >> /etc/zshrc
|