Skip to content

Commit

Permalink
Use more direct brew installs
Browse files Browse the repository at this point in the history
  • Loading branch information
noatpad committed Mar 14, 2021
1 parent f2595dd commit 417e683
Show file tree
Hide file tree
Showing 5 changed files with 165 additions and 162 deletions.
59 changes: 0 additions & 59 deletions Brewfile

This file was deleted.

100 changes: 0 additions & 100 deletions Caskfile

This file was deleted.

22 changes: 22 additions & 0 deletions Masfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
mas "Amphetamine", id: 937984704
mas "Clocker", id: 1056643111
mas "ColorSlurp", id: 1287239339
mas "CotEditor", id: 1024640650
mas "Debit & Credit", id: 882637653
mas "Disk Cleaner", id: 965709265
mas "Friendly Streaming", id: 553245401
mas "GarageBand", id: 682658836
mas "Gifski", id: 1351639930
mas "iMovie", id: 408981434
mas "Keynote", id: 409183694
mas "Magnet", id: 441258766
mas "Numbers", id: 409203825
mas "Pages", id: 409201541
mas "Parcel", id: 639968404
mas "RunCat", id: 1429033973
mas "SketchBook", id: 863486266
mas "Spark – Email App by Readdle", id: 1176895641
mas "Syntra Small", id: 1094640838
mas "The Unarchiver", id: 425424353
mas "Tot", id: 1491071483
mas "Twitter", id: 1482454543
6 changes: 5 additions & 1 deletion gitconfig
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
[alias]
adog = log --all --decorate --oneline --graph
adog = log --all --decorate --oneline --graph

[user]
name = Danny Hernandez
email = tamdannyhdz@gmail.com
140 changes: 138 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,150 @@ else
brew update
fi

# Install brew packages (and node gets installed with it)
# Install brew packages (and node along with it)
cd ~/.dotfiles
brew bundle
brew tap "dart-lang/dart"
brew tap "homebrew/bundle"
brew tap "homebrew/cask"
brew tap "homebrew/core"
brew tap "homebrew/services"
brew tap "jhawthorn/fzy"
brew tap "kkevinm/itunes-discord-rp"
brew tap "mongodb/brew"

brew install "automake"
brew install "bat"
brew install "python@3.9"
brew install "glib"
brew install "cairo"
brew install "catimg"
brew install "coreutils"
brew install "exa"
brew install "gnutls"
brew install "harfbuzz"
brew install "libass"
brew install "ffmpeg"
brew install "fswatch"
brew install "fzf"
brew install "gh"
brew install "gifsicle"
brew install "git-lfs"
brew install "gnu-sed"
brew install "httpie"
brew install "imagemagick"
brew install "libimobiledevice"
brew install "ios-webkit-debug-proxy"
brew install "iproute2mac"
brew install "libdnet"
brew install "libksba"
brew install "libyaml"
brew install "lolcat"
brew install "mackup"
brew install "m-cli"
brew install "mas"
brew install "micro"
brew install "mono"
brew install "neofetch"
brew install "node"
brew install "pandoc"
brew install "pipes-sh"
brew install "pylibpcap"
brew install "python@3.8"
brew install "ruby"
brew install "ruby-build"
brew install "sl"
brew install "sphinx-doc"
brew install "starship"
brew install "swi-prolog"
brew install "thefuck"
brew install "youtube-dl"
brew install "zoxide"
brew install "zsh"
brew install "zsh-syntax-highlighting"
brew install "mongodb/brew/mongodb-community"

# Install MacOS apps from cask & App Store when prompted
read -p "Do you want to install MacOS apps from cask & the App Store? ([y]/n) " -n 1
if [[ ! $REPLY =~ ^[Nn]$ ]]
then
brew tap "homebrew/cask-fonts"

brew install --cask "font-hack-nerd-font"
brew install --cask "qlcolorcode"
brew install --cask "qlstephen"
brew install --cask "xquartz"

brew install --cask "1password"
brew install --cask "8bitdo-ultimate-software"
brew install --cask "aerial"
# brew install --cask "alfred"
brew install --cask "appcleaner"
brew install --cask "google-photos-backup-and-sync"
brew install --cask "bartender"
brew install --cask "bitwarden"
# brew install --cask "boom-3d"
brew install --cask "cheatsheet"
brew install --cask "checkra1n"
brew install --cask "discord"
brew install --cask "dockey"
brew install --cask "dolphin"
brew install --cask "enjoyable"
brew install --cask "etrecheckpro"
# brew install --cask "fantastical"
brew install --cask "firefox"
brew install --cask "flux"
brew install --cask "google-chrome"
brew install --cask "iterm2"
brew install --cask "itunesdiscordrp"
brew install --cask "kap"
brew install --cask "kdiff3"
brew install --cask "keycastr"
# brew install --cask "loopback"
brew install --cask "love"
brew install --cask "meteorologist"
brew install --cask "minecraft"
brew install --cask "mongodb-compass"
brew install --cask "multimc"
brew install --cask "notion"
brew install --cask "nxengine"
brew install --cask "obs"
brew install --cask "obsidian"
brew install --cask "openemu"
brew install --cask "opentoonz"
brew install --cask "parsec"
# brew install --cask "path-finder"
brew install --cask "postman"
brew install --cask "securesafe"
brew install --cask "sf-symbols"
brew install --cask "slack"
# brew install --cask "soulver"
brew install --cask "steam"
brew install --cask "streamlabs-obs"
brew install --cask "surfshark"
brew install --cask "trailer"
brew install --cask "ubersicht"
brew install --cask "visual-studio-code"
brew install --cask "vlc"
brew install --cask "wwdc"
brew install --cask "zoom"

# - Missing apps:
# Audacity
# BandagedBD
# Clip Studio (and Clip Studio Paint)
# CZUR Scanner
# DaVinci Resolve
# Desktop Goose
# Drawpile
# Feeds (or any RSS feed reader)
# Filezilla
# GameMaker Studio
# Microsoft Office
# Pureref
# SanicBall
# Sonic Robo Blast 2 Kart
# Tayasui Sketches Pro

brew bundle --file Caskfile
fi

Expand Down

0 comments on commit 417e683

Please sign in to comment.