Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #!/usr/bin/env bash | |
| ################################## | |
| # Install command line dev tools # | |
| ################################## | |
| /usr/bin/xcode-select -p > /dev/null 2>&1 | |
| if [ $# != 0 ]; then | |
| xcode-select --install | |
| sudo xcodebuild -license accept | |
| fi |
| # fix owner of files and folders recursively | |
| sudo chown -vR $(whoami) /usr/local /opt/homebrew-cask /Library/Caches/Homebrew | |
| # fix read/write permission of files and folders recursively | |
| chmod -vR ug+rw /usr/local /opt/homebrew-cask /Library/Caches/Homebrew | |
| # fix execute permission of folders recursively | |
| find /usr/local /opt/homebrew-cask /Library/Caches/Homebrew -type d -exec chmod -v ug+x {} + |
| # Path to your oh-my-zsh configuration. | |
| export ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| #export ZSH_THEME="robbyrussell" | |
| export ZSH_THEME="zanshin" |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.