Skip to content

Instantly share code, notes, and snippets.

@sygo
Last active November 16, 2016 18:39
Show Gist options
  • Save sygo/483f5c839e83fd98f338 to your computer and use it in GitHub Desktop.
Save sygo/483f5c839e83fd98f338 to your computer and use it in GitHub Desktop.
quick script that sources all my relevant gists, installs essential tools and configures stuff to look prettier
# Update all the things
apt-get update
apt-get -y upgrade
apt-get -y dist-upgrade
# ssh new keys
rm /etc/ssh/ssh_host_* && dpkg-reconfigure openssh-server
# modules, gems & such
apt-get install python.xlwt
## gnome add-ons
apt-get install synapse
apt-get install fonts-terminus
wget https://raw.githubusercontent.com/christoffer/configs/master/snippets/install-gohu-fonts-ubuntu.sh -P /tmp/instgohu.sh
sudo sh +x /tmp/instgohu.sh
## General Colorizer Setup ##
apt-get install grc
wget https://gist.githubusercontent.com/sygo/844982/raw/0d85bc0b6b1b1c3bfac6cdf36820588d1c5469d7/conf.hexdump -P /usr/share/grc/
wget https://gist.github.com/sygo/844982/raw/c55e0a9583aa390a42105ae10646b6ec62ffdd3b/conf.nmap -P /usr/share/grc/
wget https://gist.githubusercontent.com/sygo/844982/raw/a52ea94dcd9f69178280332493fdc7ff8d8c6278/grc.conf -P /tmp/
cat /tmp/grc.conf >> /etc/grc.conf
## make screen more usable ##
wget https://gist.githubusercontent.com/sygo/10876521/raw/499dea3cc82a7879a17b1ca4545f32b8e26ecaf0/.screenrc -P $HOME
## zsh goodness ##
apt-get install zsh
wget https://gist.githubusercontent.com/sygo/6359699/raw/232fdd625535674f90ccd3b860f6ff9b9e4dbaa7/le_prompt.zsh -P $HOME
wget https://gist.githubusercontent.com/sygo/6359674/raw/122fdf019ecc58d548ec554443199e1b9eca8621/.zshrc -P $HOME
mkdir /usr/share/zsh/plugins/ && git clone https://github.com/zsh-users/zsh-syntax-highlighting.git /usr/share/zsh/plugins/zsh-syntax-highlighting/
chsh -s /bin/zsh
## Configure vim ##
wget https://gist.githubusercontent.com/sygo/844983/raw/fc329b76cd351bcabb3a659c9189e366089df94c/vimrc; mv vimrc $HOME/.vimrc -P $HOME
mkdir -p $HOME/.vim/backups
mkdir $HOME/.vim/tmp
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vim +PluginInstall +qall
## Sane WM setup ##
apt-get -y install rxvt-unicode i3
wget https://gist.githubusercontent.com/sygo/844986/raw/c7d355091c9bfe43a42ba3443ba9623e64a90bfe/Xdefaults -P $HOME/.Xdefaults
## Install essential stuff ##
git clone https://github.com/leebaird/discover.git /opt/discover/
/opt/discover/setup.sh
apt-get install beef-xss
wget wifipineapple.com/wp4.sh; mv wp4.sh /opt/wp4.sh; chmod +x /opt/wp4.sh;
wget https://lazykali.googlecode.com/files/hackpack.tar.gz -P /tmp/
wget https://lazykali.googlecode.com/files/lazykali.sh -P /tmp
echo "======= I'll just leave /tmp/lazykali.sh here"; sleep
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment