Skip to content

💻 macOS setup script for front-end development

License

Notifications You must be signed in to change notification settings

gnclmorais/formation

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Please note that this specific repo is a customised version of the original project by @minamarkham. All props go to her! 👏🏻

🐝 Formation

Let's get in formation

Formation is a shell script to set up a macOS laptop for design and development.

It can be run multiple times on the same machine safely. It installs, upgrades, or skips packages based on what is already installed on the machine.

Install

Download the script and review it (please don't run scripts you don't understand):

git clone git@github.com/gnclmorais/formation.git && cd formation && less slay

Slay:

git clone git@github.com/gnclmorais/formation.git && cd formation && ./slay 2>&1 | tee ~/slay.log

As an alternative, if you are setting up a new MacBook, git is not likely to be installed yet so you can instead:

curl -L -o formation.zip -k https://github.com/gnclmorais/formation/archive/gnclmorais.zip \
  && unzip formation.zip \
  && rm formation.zip \
  && mv formation-gnclmorais formation \
  && cd formation \
  && bash ./slay 2>&1 | tee ~/slay.log

Just follow the prompts and you’ll be fine. 👌

⚠️ Warning: I advise against running this script unless you understand what it’s doing to your computer.

I created this based on my own preferences; your mileage may vary.

Once the script is done, quit and relaunch Terminal.

It is highly recommended to run the script regularly to keep your computer up to date.

Your last Formation run will be saved to ~/slay.log. To review it, run less ~/slay.log.

That's it! ✨

What it sets up

The setup process will install:

Basic tools:
Package Managers:
  • NVM for managing and installing multiple versions of Node.js and npm
  • Rbenv for managing versions of Ruby
  • Yarn for managing JavaScript packages
CLI Tools & Utilities:
  • asciinema for recording terminal sessions.
  • ImageMagick to create, edit, compose, or convert bitmap images.
  • mas Mac App Store command line interface.

Apps

Productivity
  • Evernote to write down all kinds of notes.
  • Flycut, a clipboard manager.
  • Notion to brainstorm and daydream.
  • Trello to keep track of tasks.
Development
Design
Communication
  • Discord for public communities.
  • Skype for free calls to friends and family.
  • Slack where “work” happens.
  • Tweeten, a powerful Twitter client.
  • Zoom for video calls.
Utilities
Miscellaneous
Browsers

See swag for the full list of apps that will be installed. Adjust it to your personal taste.

It should take less than 20 minutes to install (depends on your machine).

🌶 Just add ~/.hot-sauce

I got hot sauce in my bag

Your ~/.hot-sauce is added at the end of the Formation script. Put your customizations there. For example:

#!/usr/bin/env bash

SETUP_ROOT=$HOME/.setup

NERDFONTS_RELEASE=$(curl -L -s -H 'Accept: application/json' https://github.com/ryanoasis/nerd-fonts/releases/latest)
NERDFONTS_VERSION=$(get_github_version $NERDFONTS_RELEASE)

DIRECTORIES=(
    $HOME/Documents/__tmp
    $HOME/Documents/_dev
    $HOME/Documents/_downloads
    $HOME/Documents/_screenshots
)

NERDFONTS=(
    SpaceMono
    Hack
    AnonymousPro
    Inconsolata
)

step "Making directories…"
for dir in ${DIRECTORIES[@]}; do
    mkd $dir
done

step "Installing fonts…"
for font in ${NERDFONTS[@]}; do
    if [ ! -d ~/Library/Fonts/$font ]; then
        printf "${indent}  [↓] $font "
        wget -P ~/Library/Fonts https://github.com/ryanoasis/nerd-fonts/releases/download/$NERDFONTS_VERSION/$font.zip --quiet;unzip -q ~/Library/Fonts/$font -d ~/Library/Fonts/$font
        print_in_green "${bold}✓ done!${normal}\n"
    else
        print_muted "${indent}$font already installed. Skipped."
    fi
done

Write your customizations such that they can be run safely more than once. See the slay script for examples.

Formation functions such as step and link can be used in your ~/.hot-sauce.

Known Issues

Cask does not recognize applications installed outside of Homebrew Cask – in the case that the script fails, you can either remove the application from the install list or uninstall the application causing the failure and try again.

Acknowledgements

Inspiration and code was taken from many sources, including:

📜 License

Formation is customized for my own needs. It is free software, and may be redistributed under the terms specified in the LICENSE file.

About

💻 macOS setup script for front-end development

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%