Skip to content

Instantly share code, notes, and snippets.

@kaxil
Last active September 24, 2018 15:34
Show Gist options
  • Save kaxil/2538f097eabb033a7c5ae5539bb2580b to your computer and use it in GitHub Desktop.
Save kaxil/2538f097eabb033a7c5ae5539bb2580b to your computer and use it in GitHub Desktop.
Bought a new mac? or Formatted your old mac? This script will install all the required softwares for a Software Developer / Data Engineer / Data Scientist using brew cask.
#!/usr/bin/env bash
# This script will avoid the effort of downloading each software one by one and then moving them to Applications folder.
# Install brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)";
# Install nec
brew install wget
# Install Mac Softwares using Brew Cask
brew cask install google-chrome # Browser
brew cask install spectacle # Move and resize windows with ease. Window control with simple and customizable keyboard shortcuts
brew cask install dropbox # Cloud Storage
brew cask install github # Version Control
brew cask install boostnote # Open source note-taking app designed for programmer
brew cask install slack # Team communication and collaboration
brew cask install evernote # Note-taking
brew cask install free-download-manager # Download Manager
brew cask install atom # Text-Editor
brew cask install drawio # Online Diagram softwares
brew cask install skype # Video-calling
brew cask install java # Programming language
brew cask install sublime-text # Text-Editor
brew cask install vlc # Video player
brew cask install teamviewer # Remote control & Desktop Sharing
brew cask install macdown # Open source Markdown editor for macOS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment