dotfiles/apt/custom-installs.sh

20 lines
675 B
Bash
Raw Normal View History

2016-02-07 17:13:23 +00:00
#!/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
2016-02-14 17:47:57 +00:00
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
2016-02-07 17:13:23 +00:00
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
2016-02-09 23:14:09 +00:00
wget -O - https://raw.githubusercontent.com/nvbn/thefuck/master/install.sh | bash
2016-02-08 23:05:08 +00:00
wget -qO- http://plasmasturm.org/code/vistafonts-installer/vistafonts-installer | bash
2016-02-07 17:13:23 +00:00
echo ">> Cleaning up..."
rm -rf atom.deb astrill.deb