dotfiles/apt/custom-installs.sh

20 lines
675 B
Bash
Executable File

#!/usr/bin/env bash
echo ">> Collecting Packages..."
wget https://atom.io/download/deb -O atom.deb
wget "https://www.astrill.com/downloads/astrill-setup-linux64.deb?mirror=uk" -O astrill.deb
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
echo ">> Installing Packages..."
dpkg -i atom.deb
dpkg -i astrill.deb
echo ">> Installing other packages..."
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.30.2/install.sh | bash
wget -O - https://raw.githubusercontent.com/nvbn/thefuck/master/install.sh | bash
wget -qO- http://plasmasturm.org/code/vistafonts-installer/vistafonts-installer | bash
echo ">> Cleaning up..."
rm -rf atom.deb astrill.deb