Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use brew bundle #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
173 changes: 146 additions & 27 deletions Brewfile
Original file line number Diff line number Diff line change
@@ -1,41 +1,160 @@
##
# brews
##

## Productive stuff
ack
httpie
wget
packer
watch
brew "ack"
brew "httpie"
brew "wget"
brew "packer"
brew "watch"

## Programming stuff
rbenv
ruby-build
ngrok
nvm
npm
python
git
git-flow
brew "rbenv"
brew "ruby-build"
brew "ngrok"
brew "nvm"
brew "npm"
brew "python"
brew "git"
brew "git-flow"

## Shell stuff
zsh
zsh-completions
zsh-syntax-highlighting
tmux
tmate
brew "zsh"
brew "zsh-completions"
brew "zsh-syntax-highlighting"
brew "tmux"
brew "tmate"

## VPN stuff
#tuntap
#openconnect
#brew "tuntap"
#brew "openconnect"

## brew cask and more versions of casks
caskroom/cask/brew-cask
## brew "cask and more versions of casks
brew "caskroom/cask/brew-cask"

## Pivotal CF cli
cloudfoundry-cli
brew "cloudfoundry-cli"

## Time-waste stuff
#fortune
#cowsay
youtube-dl
#brew "fortune"
#brew "cowsay"
brew "youtube-dl"

## Games
brew "homebrew/games/ckan"

##
# taps
##

## brew cask and more versions of casks
tap "caskroom/versions"

## Add tap "for Pivotal
tap "pivotal/tap"

## Tap for packer
tap "homebrew/binary"

## Tap for tmate
tap "nviennot/tmate"

##
# casks
##

## Install a ton of great apps using Homebrew cask instead of downloading, clicking and manually installing :)

## Standard app replacements
# Web
cask "google-chrome"
# cask Terminal
cask "iterm2"

## Boxes
# Virtualization
cask "vagrant"
cask "virtualbox"
# Containers
cask "dockertoolbox"

## Coding
# SourceTree
cask "sourcetree"
# Text editing
cask "sublime-text3"
cask "atom"
# Markdown
cask "macdown"

## Desktop
# Proper screen ligthing
cask "flux"
# QuickLook plugins
cask "qlcolorcode"
cask "qlstephen"
cask "qlmarkdown"
cask "quicklook-json"
cask "betterzipql"
cask "suspicious-package"
# Window management
cask "spectacle"
# Logitech Unifying software for keyboard and trackball
cask "logitech-unifying"

## Media
# Video player
cask "vlc"
# PDF reader
cask "skim"
# Picture viewer
cask "xee"
# Comic reader
cask "simple-comic"
# Sonos music manager
cask "sonos"
# Soundcloud client (yes, that's the correct spelling)
cask "soundcleod"
# Adobe Flash
cask "flash"
# Podcast player
cask "instacast"
# Music player - install vox from App Store instead
# Spotify player
cask "spotify"


## Work
# Screen recording
cask "screenflow"
# Note taking
cask "evernote"
cask "nvalt"
# VMware View
cask "vmware-horizon-view-client"
# Collaboration
cask "slack"
# Podcast cleanup
cask "levelator"
cask "audio-hijack"

## Cloud resources
cask "google-cloud-sdk"

## Social
# Skype
cask "skype"

## Storage
# Online storage
cask "dropbox"
cask "google-drive"
# Compression
cask "keka"
# Management
cask "filezilla"

## Games
homebrew/games/ckan
# Steam client - now possible to stream games from the gaming rig to the Mac!
cask "steam"
89 changes: 0 additions & 89 deletions Caskfile

This file was deleted.

11 changes: 0 additions & 11 deletions Taps

This file was deleted.

10 changes: 2 additions & 8 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,8 @@ brew update
# Install oh-my-zsh to beautify and manage zsh
curl -L http://install.ohmyz.sh | sh

# install brew taps, needs to be fixed properly later
while read in; do brew tap "$in"; done < Taps

# Install brews
brew install $(cat Brewfile|grep -v "#")

# Install casks
brew cask install $(cat Caskfile|grep -v "#")
# install from Brewfile
brew bundle

# Set standard settings
source 'settings.sh'
Expand Down