Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- #
- ## Install xcode command line tools
- xcode-select --install
- #
- #Install Brew Packages
- #
- # 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
- ## Is this the correct way to append to the path statement?
- PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"
- MANPATH="/usr/local/opt/coreutils/libexec/gnuman:$MANPATH"
- #Example configurations have been installed to:
- # /usr/local/opt/tmux/share/tmux/examples
- binaries=(
- coreutils
- findutils
- bash
- ffmpeg
- figlet
- fish
- htmldoc
- htop-osx
- imagemagick
- msmtp
- mutt
- offlineimap
- tmux
- tree
- urlview
- aspell --with-lang-en_US
- vim
- weechat --with-aspell --with-perl --with-python
- wget
- xclip
- youtube-dl
- )
- echo "installing binaries..."
- brew install ${binaries[@]}
- # Install more recent versions of some OS X tools
- #
- brew tap homebrew/dupes
- brew tap homebrew/x11
- brew tap homebrew/versions
- brew install homebrew/x11/xclip
- brew install homebrew/dupes/grep
- brew install homebrew/dupes/nano --disable-nls --enable-color --enable-extra --enable-multibuffer --enable-nanorc --enable-utf8
- brew install caskroom/cask/brew-cask
- brew cask install google-chrome-canary
- # Apps
- apps=(
- 1password
- alfred
- alternote
- atom
- bartender
- brackets
- cleanmymac
- daisydisk
- dropbox
- firefox
- firefoxdeveloperedition
- flux
- github-desktop
- google-chrome
- google-chrome-canary
- hazel
- iterm2
- itsycal
- keka
- moom
- nvalt
- omnifocus
- seil
- slack
- textexpander
- transmission
- vlc
- xquartz
- )
- # Install apps to /Applications
- # Default is: /Users/$user/Applications
- echo "installing apps..."
- brew cask install --appdir="/Applications" ${apps[@]}
- #
- #Install Fonts
- #
- brew tap caskroom/fonts
- brew cask install font-ubuntu
- #
- #Cleanup After Install
- #
- brew cleanup
- brew cask cleanup
- ## Install Powerline Fonts
- ## https://ruigomes.me/blog/perfect-iterm-osx-terminal-installation/
- git clone https://github.com/powerline/fonts.git && cd fonts && ./install.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement