Skip to content

Instantly share code, notes, and snippets.

@fabianmarz
Last active January 23, 2020 09:42
Show Gist options
  • Save fabianmarz/22b0cf5945040615666a968e190c32ba to your computer and use it in GitHub Desktop.
Save fabianmarz/22b0cf5945040615666a968e190c32ba to your computer and use it in GitHub Desktop.
#!/bin/bash
# Install xcode CLI
echo "Installing xcode-stuff"
xcode-select --install
# Check for Homebrew,
# Install if we don't have it
if test ! $(which brew); then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
# Update homebrew recipes
echo "Updating homebrew..."
brew update
echo "Installing Git..."
brew install git
echo "Cleaning up brew"
brew cleanup
echo "Installing homebrew cask"
brew install caskroom/cask/brew-cask
#Install Zsh & Oh My Zsh
echo "Installing Oh My ZSH..."
curl -L http://install.ohmyz.sh | sh
echo "Setting ZSH as shell..."
chsh -s $(which zsh)
# Apps
apps=(
1password
alfred
appcleaner
banking-4
docker
firefox
flux
google-chrome
phpstorm
poedit
slack
spotify
spectacle
iterm2
telegram-desktop
tripmode
tunnelblick
virtualbox
vlc
sequel-pro
)
# Set keyboard repeat speed
echo "Configure keyboard speed"
defaults write -g InitialKeyRepeat -int 15
defaults write -g KeyRepeat -int 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment