Repository: Aerolab/setup Branch: master Commit: 91278f80366b Files: 3 Total size: 14.0 KB Directory structure: gitextract_nwswwsrw/ ├── LICENSE ├── README.md └── setup.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: LICENSE ================================================ The MIT License (MIT) Copyright (c) 2016 Aerolab Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # Aerolab Setup This will install the most popular tools and tweaks we use at Aerolab Open Terminal, type this and press enter: ```shell /usr/bin/python -c "$(curl -fsSL https://raw.githubusercontent.com/Aerolab/setup/master/setup.py)" ``` Follow the instructions and that's it :D ### Software: * Brew & Brew Cask with AutoUpdate * Node.js, Ruby, Python, Bower, Gulp, Grunt and Git * Atom, Sublime Text 3 & Package Control and VIM * A bunch of Fonts, including our beloved Dosis * Essential Quicklook plugins (so you can view code, zip contents and other things) * Essential Software, including Chrome, iTerm2, Dropbox, Slack, Sublime, and a few more. * A lot of OSX tweaks, like disabling the annoying Mac startup sound ### Options * *Developer Tools*: Docker Toolbox, Sequel Pro, Cyberduck, ngrok * *Android Tools*: Java, Android Studio * *iOS Tools*: Cocoapods * *Web Developer Tools*: Imageoptim * *Designer Tools*: Invision Sync, Scala Preview * *Sublime Text 3*: Emmet, Markdown, SASS, Linters, Git, Material Theme and other packages. * *Oh My Zsh*: Zsh, but better. Also includes an iTerm2 Theme and Powerline Fonts. * *Animations*: Makes all the Finder animations (Spaces, Exposé, Resizing) much faster. ### Mac App Store Tools * You can install mas by typing **brew install mas**, which lets you install App Store apps via the command line. * *The Basics*: [Keynote](https://itunes.apple.com/en/app/keynote/id409183694), [Numbers](https://itunes.apple.com/en/app/numbers/id409203825), [Pages](https://itunes.apple.com/en/app/pages/id409201541) ================================================ FILE: setup.py ================================================ #!/Library/Frameworks/Python.framework/Versions/2.7/bin/python # -*- coding: utf-8 -*- import os import json import urllib2 import subprocess name = '' email = '' options = { 'developer': '', 'android': '', 'ios': '', 'designer': '', 'vim': '', 'zsh': '', 'animations': '', 'showhiddenfiles': '', 'autoupdate': '', } # Check if Xcode Command Line Tools are installed if os.system('xcode-select -p') != 0: print "Installing XCode Tools" os.system('xcode-select --install') os.system('softwareupdate --install-rosetta --agree-to-license') print "**************************************************************" print "Install the XCode Command Line Tools and run this script again" print "**************************************************************" exit() # Accept XCode License # os.system('sudo xcodebuild -license accept') # Sudo: Spectacle, ZSH, OSX Settings print "\n\nWelcome... TO THE WORLD OF TOMORROW\n" # Basic Info while name == '': name = raw_input("What's your name?\n").strip() while email == '' or '@' not in email: email = raw_input("What's your work email?\n").strip() # Setup Options while options['designer'] not in ['y', 'n']: options['designer'] = raw_input("Do you want to install Designer Tools? (y|n) [y] ") or "y" while options['developer'] not in ['y', 'n']: options['developer'] = raw_input("Do you want to install Developer Tools? (y|n) [y] ") or "y" if options['developer'] == 'y': while options['android'] not in ['y', 'n']: options['android'] = raw_input("Do you want to install Android Tools? (y|n) [n] ") or "n" while options['ios'] not in ['y', 'n']: options['ios'] = raw_input("Do you want to install iOS Tools? (y|n) [n] ") or "n" # Other Options while options['vim'] not in ['y', 'n']: options['vim'] = raw_input("Do you want to install VIM with Awesome VIM? (y|n) [y] ") or "y" while options['zsh'] not in ['y', 'n']: options['zsh'] = raw_input("Do you want to install Oh My Zsh? (y|n) [y] ") or "y" while options['animations'] not in ['y', 'n']: options['animations'] = raw_input("Do you want to accelerate OSX animations? (y|n) [y] ") or "y" while options['showhiddenfiles'] not in ['y', 'n']: options['showhiddenfiles'] = raw_input("Do you want to show hidden files? (y|n) [y] ") or "y" while options['autoupdate'] not in ['y', 'n']: options['autoupdate'] = raw_input("Do you want to update your computer automatically? (y|n) [y] ") or "y" def show_notification(text): os.system('osascript -e \'display notification "'+ text +'" with title "Mac Setup"\' > /dev/null') print "Hi %s!" % name print "You'll be asked for your password at a few points in the process" print "*************************************" print "Setting up your Mac..." print "*************************************" # Create a Private Key if not os.path.isfile(os.path.expanduser("~") + '/.ssh/id_rsa.pub') : print "Creating your Private Key" os.system('ssh-keygen -t rsa -b 4096 -f ~/.ssh/id_rsa -N "" -C "%s"' % email) # Set computer name & git info (as done via System Preferences → Sharing) os.system('sudo scutil --set ComputerName "%s"' % name) os.system('sudo scutil --set HostName "%s"' % name) os.system('sudo scutil --set LocalHostName "%s"' % name.replace(' ', '-')) # Doesn't support spaces os.system('sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server NetBIOSName -string "%s"' % name) os.system('git config --global user.name "%s"' % name) os.system('git config --global user.email "%s"' % email) # Install Brew & Brew Cask print "Installing Brew & Brew Cask" os.system('touch ~/.bash_profile') os.system('/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"') os.system('brew tap homebrew/cask-versions') os.system('brew tap homebrew/cask-fonts') os.system('brew update && brew upgrade && brew cleanup') # Install Languages print "Installing Git+NodeJS" os.system('brew install git node') os.system('brew link --overwrite git node') os.system('brew install git-flow git-lfs svn') # For some reason most fonts require SVN os.system('git lfs install') print "Installing Useful Stuff" os.system('brew install graphicsmagick curl wget sqlite libpng libxml2 openssl') print "Installing Command Line Tools" os.system('npm install -g node-gyp serve yarn') # OSX Tweaks & Essentials print "Installing Quicklook Helpers" os.system('brew install qlcolorcode qlstephen qlmarkdown quicklook-csv quicklook-json qlimagesize webpquicklook suspicious-package qlprettypatch quicklookase qlvideo') # Permissions Fix for macOS Catalina os.system('xattr -d -r com.apple.quarantine ~/Library/QuickLook') print "Installing Essential Apps" os.system('brew install iterm2 the-unarchiver rectangle google-chrome visual-studio-code spotify slack discord') print "Installing Fonts" os.system('brew install font-dosis font-droid-sans-mono-for-powerline font-open-sans font-roboto font-roboto-mono font-roboto-slab font-consolas-for-powerline font-inconsolata font-inconsolata-for-powerline font-lato font-menlo-for-powerline font-meslo-lg font-meslo-for-powerline font-noto-sans font-noto-serif font-source-sans-pro font-source-serif-pro font-ubuntu font-pt-mono font-pt-sans font-pt-serif font-fira-mono font-fira-mono-for-powerline font-fira-code font-fira-sans font-source-code-pro font-hack font-anka-coder font-jetbrains-mono') # Appropriate Software if options['developer'] == 'y': print "Installing Developer Tools" os.system('brew install --cask docker') os.system('brew install sequel-pro postman imageoptim imagealpha xnconvert') os.system('curl -o- https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash') if options['android'] == 'y': print "Installing Android Tools" os.system('brew fetch java') show_notification("We need your password") os.system('brew install java') os.system('brew install android-studio') os.system('brew install android-platform-tools') if options['ios'] == 'y': print "Installing iOS Tools" show_notification("We need your password") os.system('sudo gem install cocoapods') show_notification("We need your password") os.system('sudo gem install fastlane --verbose') if options['designer'] == 'y': print "Installing Designer Tools" os.system('brew install figma') if options['vim'] == 'y': print "Installing VIM + Awesome VIM" os.system('brew install vim') os.system('git clone https://github.com/amix/vimrc.git ~/.vim_runtime') os.system('sh ~/.vim_runtime/install_awesome_vimrc.sh') # Oh-My-ZSH. Dracula Theme for iTerm2 needs to be installed manually if options['zsh'] == 'y': print "Installing Oh-My-Zsh with Dracula Theme" show_notification("We need your password") # Setup Adapted from https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh if os.system('test -d ~/.oh-my-zsh') != 0: os.system('umask g-w,o-w && git clone --depth=1 https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh') if os.system('test -f ~/.zshrc') != 0: os.system('cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc') # If the user has the default .zshrc tune it a bit if (subprocess.call(['bash', '-c', 'diff <(tail -n +6 ~/.zshrc) <(tail -n +6 ~/.oh-my-zsh/templates/zshrc.zsh-template) > /dev/null']) == 0): # Plugins os.system('brew install zsh-autosuggestions zsh-syntax-highlighting bat tldr tree') os.system('echo "source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ~/.zshrc'); os.system('echo "source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh" >> ~/.zshrc'); os.system('sed -i -e \'s/plugins=(git)/plugins=(git brew node npm docker colored-man-pages copypath copyfile extract)/g\' ~/.zshrc &> /dev/null') # Agnoster Theme os.system('sed -i -e \'s/robbyrussell/agnoster/g\' ~/.zshrc &> /dev/null') # Customizations os.system('echo "alias dog=\'bat\'" >> ~/.zshrc') # Don't show the user in the prompt os.system('echo "DEFAULT_USER=\`whoami\`" >> ~/.zshrc') os.system('echo "export NVM_DIR=\"\$HOME/.nvm\"\n[ -s \"\$NVM_DIR/nvm.sh\" ] && . \"\$NVM_DIR/nvm.sh\" # This loads nvm" >> ~/.zshrc') # Remove the 'last login' message os.system('touch ~/.hushlogin') os.system('git clone https://github.com/dracula/iterm.git ~/Desktop/dracula-theme/') # Random OSX Settings print "Tweaking OSX Settings" if options['showhiddenfiles'] == 'y': # Finder: show hidden files by default os.system('defaults write com.apple.finder AppleShowAllFiles -bool true') # Finder: show all filename extensions os.system('defaults write NSGlobalDomain AppleShowAllExtensions -bool true') # Finder: allow text selection in Quick Look os.system('defaults write com.apple.finder QLEnableTextSelection -bool true') # Check for software updates daily os.system('defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1') # Disable auto-correct #os.system('defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false') # Require password immediately after sleep or screen saver begins os.system('defaults write com.apple.screensaver askForPassword -int 1') os.system('defaults write com.apple.screensaver askForPasswordDelay -int 0') # Show the ~/Library folder os.system('chflags nohidden ~/Library') # Don’t automatically rearrange Spaces based on most recent use os.system('defaults write com.apple.dock mru-spaces -bool false') # Prevent Time Machine from prompting to use new hard drives as backup volume os.system('defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true') if options['animations'] == 'y': print "Tweaking System Animations" os.system('defaults write NSGlobalDomain NSWindowResizeTime -float 0.1') os.system('defaults write com.apple.dock expose-animation-duration -float 0.15') os.system('defaults write com.apple.dock autohide-delay -float 0') os.system('defaults write com.apple.dock autohide-time-modifier -float 0.3') os.system('defaults write NSGlobalDomain com.apple.springing.delay -float 0.5') os.system('killall Dock') if options['autoupdate'] == 'y': print "Enabling Automatic Brew Updates & Upgrades" os.system('brew tap homebrew/autoupdate') os.system('brew autoupdate start --upgrade') # Make Google Chrome the default browser os.system('open -a "Google Chrome" --args --make-default-browser') # Open Rectangle (Needs to be enabled manually) os.system('open -a "Rectangle"') # Clean Up os.system('brew cleanup') # Mute startup sound show_notification("We need your password") os.system('sudo nvram SystemAudioVolume=%00') print "" print "" print "*************************************" print "Enabling FileVault" os.system('sudo fdesetup enable') print "" print "*************************************" print "Your SSH Public Key Is:" with open(os.path.expanduser("~") + '/.ssh/id_rsa.pub', 'r') as f: print f.read() print "" if options['zsh'] == 'y': print "*************************************" print "Remember to set up iTerm2:" print "* Go to iTerm2 > Preferences > Profiles > Colors Tab" print " * Load Presets..." print " * Import..." print " * Pick Desktop > dracula-theme > iterm > Dracula.itermcolors" print "* Go to iTerm2 > Preferences > Profiles > Text Tab" print " * Regular Font" print " * 12pt Menlo for Powerline Font" print "" print "*************************************" print "Remember to restart your Mac" print "*************************************" show_notification("All done! Enjoy your new macOS!") # Change the shell if necessary if options['zsh'] == 'y': os.system('chsh -s /bin/zsh &> /dev/null')