Created
February 11, 2017 20:35
-
-
Save danpecher/413f9c389130da71f0e61a26124589eb to your computer and use it in GitHub Desktop.
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
echo "******************************************************" | |
echo "Enable show hidden files" | |
defaults write com.apple.finder AppleShowAllFiles YES | |
echo "Enable Cut in Finder" | |
defaults write com.apple.finder AllowCutForItems YES | |
# hide dock | |
defaults write com.apple.Dock autohide-delay -float 5 && killall Dock | |
echo "Installing XCode tools" | |
xcode-select --install | |
echo "******************************************************" | |
echo "Installing apps with brew and cask " | |
if [ ! -x /usr/local/bin/brew ]; then | |
echo "installing homebrew" | |
/usr/bin/env ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
else | |
echo "homebrew is installed" | |
fi | |
echo "Installing Cask " | |
brew install caskroom/cask/brew-cask | |
echo "Updating app lists" | |
brew update | |
brew upgrade | |
brew cask install launchbar | |
brew cask install bartender | |
brew cask install the-unarchiver | |
brew cask install iterm2 | |
brew cask install skyfonts | |
brew cask install sketch | |
brew cask install recordit | |
brew cask install screenhero | |
brew cask install kindle | |
brew cask install battle-net | |
brew cask install onyx | |
brew cask install caffeine | |
brew cask install google-chrome | |
brew cask install firefox | |
brew cask install macvim | |
brew cask install atom | |
brew cask install gitup | |
brew cask install sequel-pro | |
brew cask install postico | |
brew cask install rdm | |
brew cask install postman | |
brew cask install java | |
brew cask install skype | |
brew cask install slack | |
brew cask install flux | |
brew cask install cyberduck | |
brew cask install fontprep | |
brew cask install evernote | |
brew cask install jetbrains-toolbox | |
brew cask install karabiner-elements | |
brew cask install rescuetime | |
brew cask install tunnelblick | |
brew cask install epic-games-launcher | |
brew cask install spectacle | |
brew cask install appcleaner | |
brew cask install phoenix | |
brew install rbenv | |
brew install rbenv-gemset | |
brew install nodenv | |
brew install yarn | |
brew install python | |
pip install --upgrade pip | |
brew install tree | |
brew install coreutils | |
brew install wget | |
brew install jq #json command line | |
brew install asciinema #record terminal sessions | |
brew install httpie | |
brew install wrk # HTTP benchmarking tool | |
brew install gpg | |
brew install trash | |
brew install ranger | |
brew install watchman | |
brew install graphviz | |
brew install htop | |
brew install jq | |
brew install tmate | |
brew install ghostscript | |
brew install imagemagick | |
brew install ansible | |
brew install phantomjs | |
brew install ncdu | |
brew install fish | |
brew install composer | |
brew install nginx --with-passenger | |
brew install php71 | |
brew install php71-apcu | |
brew install php71-intl | |
brew install php71-opcache | |
brew install php71-xdebug | |
brew install php71-mcrypt | |
brew install mysql | |
brew install postgresql | |
brew install rabbitmq | |
brew install redis | |
brew install terraform | |
brew install packer | |
brew cask install qlcolorcode qlstephen qlmarkdown quicklook-json qlprettypatch quicklook-csv betterzipql suspicious-package | |
brew doctor | |
brew cleanup; | |
brew cask cleanup; | |
# Install latest version of Ruby | |
rbenv install 2.3.3 | |
rbenv global 2.3.3 | |
# Install latest version of Node | |
nodenv install 7.5.0 | |
nodenv global 7.5.0 | |
chsh -s `which fish` dan |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment