1
0
mirror of https://github.com/danbee/mac-setup synced 2025-03-04 08:39:10 +00:00

Long overdue update

This commit is contained in:
Daniel Barber 2019-04-15 14:29:44 -04:00
parent 03e614f68f
commit 6688ac24a4
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8
4 changed files with 81 additions and 88 deletions

View File

@ -1,32 +1,52 @@
tap homebrew/dupes tap "thoughtbot/formulae"
tap homebrew/versions brew "apg"
tap linode/cli brew "asdf"
tap thoughtbot/formulae brew "direnv"
install apg brew "git"
# install apple-gcc42 brew "imagemagick"
install direnv brew "mas"
# install elasticsearch brew "mackup"
install git brew "phantomjs"
install heroku-toolbelt brew "postgresql"
install imagemagick brew "pv"
install linode-cli brew "ripgrep"
install mackup brew "rcm"
install mariadb brew "rsync"
install mercurial brew "tig"
install nginx brew "tmux"
install node brew "vim"
install phantomjs brew "watch"
install postgresql brew "wget"
install pv brew "zsh"
install rbenv
install rbenv-gem-rehash cask "1password"
install rcm cask "acorn"
install rsync cask "choosy"
install ruby-build cask "colorpicker-skalacolor"
install the_silver_searcher cask "dropbox"
install tig cask "fantastical"
install tmux cask "firefox"
install vim cask "google-chrome"
install watch cask "imagealpha"
install wget cask "imageoptim"
install zsh cask "istat-menus"
cask "iterm2"
cask "ivolume"
cask "java"
cask "kaleidoscope"
cask "macvim"
cask "mplayerx"
cask "mpv"
cask "sequel-pro"
cask "skype"
cask "spotify"
cask "superduper"
cask "textmate"
cask "vmware-fusion"
cask "vlc"
tap "caskroom/fonts"
cask "font-vollkorn"
cask "font-source-code-pro"
cask "font-source-sans-pro"
cask "font-courier-prime"

View File

@ -1,48 +0,0 @@
tap caskroom/cask
tap caskroom/versions
install brew-cask
cask install 1password
cask install acorn
cask install adium
cask install anvil
# cask install arq
# cask install bittorrent-sync
# cask install choosy
# cask install cloud
# cask install coconutbattery
cask install colorpicker-skalacolor
# cask install commandq
cask install dropbox
cask install fantastical
cask install firefox
cask install flux
cask install google-chrome
cask install imagealpha
cask install imageoptim
cask install istat-menus
cask install iterm2-beta
cask install ivolume
cask install java
cask install kaleidoscope
cask install macvim
cask install mplayerx
cask install mpv
# cask install orbit
# cask install prey
cask install quicksilver
cask install sequel-pro
cask install skype
cask install smoothmouse
cask install spotify
cask install superduper
cask install textmate
# cask install vmware-fusion
cask install vlc
tap caskroom/fonts
cask install font-vollkorn
cask install font-source-code-pro
cask install font-source-sans-pro
# cask install font-redacted
# cask install font-comic-neue
cask install font-courier-prime

19
mas.sh Executable file
View File

@ -0,0 +1,19 @@
#!/bin/sh
mas install 904280696
mas install 13764025890
mas install 1084713122
mas install 1107421413
mas install 409183694
mas install 403504866
mas install 1278508951
mas install 918858936
mas install 530458789
mas install 734335183
mas install 409203825
mas install 497799835
mas install 409201541
mas install 1179623856
mas install 1082624744
mas install 1225570693
mas install 924726344

View File

@ -1,21 +1,23 @@
#!/bin/sh #!/bin/sh
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# We want to be in the user home directory. # We want to be in the user home directory.
cd ~ cd ~
# Tap boneyard for bundle command
brew tap homebrew/boneyard
# Get Brewfiles. # Get Brewfiles.
echo 'Downloading Brewfiles...' echo 'Downloading...'
curl -s https://raw.githubusercontent.com/danbee/mac-setup/master/Brewfile > ~/Brewfile curl -s https://raw.githubusercontent.com/danbee/mac-setup/master/Brewfile > ~/Brewfile
curl -s https://raw.githubusercontent.com/danbee/mac-setup/master/Caskfile > ~/Caskfile curl -s https://raw.githubusercontent.com/danbee/mac-setup/master/mas.sh > ~/mas.sh
chmod +x ~/mas.sh
# Install brew bundles # Install brew bundles
echo 'Installing...' echo 'Installing Homebrew bundle...'
brew bundle && brew bundle Caskfile brew bundle
# Install Mac App Store apps
echo 'Installing App Store apps'
~/mas.sh
echo 'Done!' echo 'Done!'