Make sure everything is up to date in the App Store
2. Install Homebrew and Homebrew-Cask
- Open a terminal window and execute the Homebrew install script:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"Make sure everything is up to date in the App Store
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"| #!/usr/bin/env sh | |
| echo "Always show scrollbars" | |
| defaults write NSGlobalDomain AppleShowScrollBars -string "Always" | |
| echo "Show all filename extensions in Finder" | |
| defaults write NSGlobalDomain AppleShowAllExtensions -bool true | |
| echo "Remove slow animations when holding shift" | |
| defaults write NSGlobalDomain FXEnableSlowAnimation -bool false |
| #!/usr/bin/env bash | |
| # Check we've got command line arguments | |
| if [ -z "$*" ] ; then | |
| echo "Need to specify ssh options" | |
| exit 1 | |
| fi | |
| # Start trying and retrying | |
| ((count = 100)) |
| #!/bin/sh | |
| #install xcode from appstore | |
| # bash <(curl -s https://gist.githubusercontent.com/gaza3g/b606ca427911147946e9/raw/a6e457fb194a6cbc278760b05e6c08fed85c32e1/osx_install.sh) | |
| echo Install XCode cmd tools | |
| xcode-select --install | |
| echo Install Homebrew | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
| .DS_Store | |
| *.swp | |
| *~.nib | |
| build/ | |
| *.pbxuser | |
| *.perspective | |
| *.perspectivev3 |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2267306/hack.sh | sh | |
| # |