22 lines
676 B
Bash
Executable file
22 lines
676 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
|
|
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 | 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
|