Last active
February 1, 2021 13:22
-
-
Save shortjared/c22745d791f84ea9cecd8f804a084d01 to your computer and use it in GitHub Desktop.
This file contains 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/sh | |
# Install Homebrew | |
which brew > /dev/null 2>&1 | |
if [ $? -eq 1 ]; then | |
#Cheat, if we don't have brew, install xcode command line utils too | |
xcode-select --install | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
else | |
brew update | |
fi | |
# Homebrew packages to install | |
BREW_PKGS=( | |
curl | |
git | |
mas | |
wget | |
zsh | |
nvm | |
) | |
for i in "${BREW_PKGS[@]}" | |
do | |
brew install $i | |
done | |
# Install oh-my-zsh & nvm configs | |
if [ -n "$ZSH_VERSION" ]; then | |
chsh -s /bin/zsh | |
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
echo "export LC_ALL=en_US.UTF-8\nexport LANG=en_US.UTF-8" >> ~/.zshrc | |
mkdir ~/.nvm | |
echo "export NVM_DIR=\"$HOME\"/.nvm\n. /usr/local/opt/nvm/nvm.sh" > ~/.zshrc | |
source ~/.zshrc | |
nvm install stable | |
npm install -global eslint | |
fi | |
# Brew Cask packages to install | |
brew tap caskroom/cask | |
BREW_CASKS=( | |
1password | |
alfred | |
appcleaner | |
cheatsheet | |
flux | |
google-chrome | |
harvest | |
iterm2 | |
lastpass | |
nosleep | |
postman | |
skim | |
spotify | |
viscosity | |
visual-studio-code | |
webpquicklook | |
) | |
for i in "${BREW_CASKS[@]}" | |
do | |
brew cask install $i | |
done | |
# Install from mac app store | |
echo "Installing Mac App Store apps..." | |
MAS_APPS=( | |
417375580 # BetterSnapTool | |
803453959 # Slack | |
641027709 # Color Picker | |
) | |
for i in "${MAS_APPS[@]}" | |
do | |
mas install $i | |
done | |
######################################################## | |
# System Default Settings | |
# | |
# Instead of using the UI, we can just set things here | |
# so each new system we setup just has our settings. | |
# Much better than being surprised and trying to | |
# remember what setting to change. | |
######################################################## | |
# Default cursor speed is slow when holding keys | |
# 0 is TOO FAST, 1 is good. (2 is min available in UI) | |
defaults write NSGlobalDomain KeyRepeat -int 1 | |
# Dark interface is best interface | |
defaults write NSGlobalDomain AppleInterfaceStyle -string Dark | |
# Autohide the dock | |
defaults write com.apple.dock autohide -int 1 | |
# Remove everything from taskbar, alfred is better | |
# for getting to and opening apps anyways | |
defaults read com.apple.dock persistent-apps | grep file-label > /dev/null 2>&1 | |
while [ $? -eq 0 ]; do | |
/usr/libexec/PlistBuddy -c "Delete persistent-apps:0" ~/Library/Preferences/com.apple.dock.plist | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment