Skip to content

Instantly share code, notes, and snippets.

@UnJavaScripter
Last active March 4, 2016 15:14
Show Gist options
  • Save UnJavaScripter/8501981c6905af5cdc10 to your computer and use it in GitHub Desktop.
Save UnJavaScripter/8501981c6905af5cdc10 to your computer and use it in GitHub Desktop.
install_stuff
#!/bin/sh
THEM_APPS="google-chrome-stable \
git-core \
tig \
curl"
THEM_MODULES="yo \
gulp \
bower \
live-server \
typescript \
stylus \
autoprefixer-stylus"
sudo apt-get update
sudo apt-get install -y $THEM_APPS
# Subl
curl https://download.sublimetext.com/sublime-text_build-3103_amd64.deb > subl3.deb
dpkg -i subl3.deb
# Dotfiles https://github.com/mathiasbynens/dotfiles
cd; curl -#L https://github.com/mathiasbynens/dotfiles/tarball/master | tar -xzv --strip-components 1 --exclude={README.md,bootstrap.sh,LICENSE-MIT.txt}
# Node - https://github.com/nodesource/distributions
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs
# Node tools
sudo npm i -g $THEM_MODULES
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment