Skip to content

Instantly share code, notes, and snippets.

@zommiommy
Created June 14, 2019 13:54
Show Gist options
  • Save zommiommy/8527363244b668188cec7f85a19a8f22 to your computer and use it in GitHub Desktop.
Save zommiommy/8527363244b668188cec7f85a19a8f22 to your computer and use it in GitHub Desktop.
Manjaro Setup Script
#!/bin/bash
sudo pacman -Syu base-devel git gdb vim nano terminator net-tools netcat zsh linux419-headers gparted neofetch htop nmap jdk-openjdk pycharm-community-edition
yay -S google-chrome code gitkraken spotify telegram-desktop
yay -S nvidia nvidia-utils lib32-nvidia-utils nvidia-settings
# Setup Zsh
sh -c "$(wget -O- https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="agnoster"/g' .zshrc
sed -i 's/plugins=(git)/plugins=(git zsh-autosuggestions zsh-syntax-highlighting)/g' .zshrc
chsh -s /bin/zsh
# Fix vmware
# sudo vmware-modconfig --console --install-all
# Anaconda 3
~/anaconda3/bin/pip install flask
~/anaconda3/bin/pip install virtualenv
~/anaconda3/bin/pip install influxdb
~/anaconda3/bin/pip install pytest
# Anaconda 2
~/anaconda2/bin/conda install pyutilib
~/anaconda2/bin/conda install psutil>=3.1.0
~/anaconda2/bin/pip install ROPgadget
~/anaconda2/bin/pip install six
~/anaconda2/bin/pip install unicorn
~/anaconda2/bin/pip install pygments
~/anaconda2/bin/pip install capstone==4.0.1
~/anaconda2/bin/pip install enum34
~/anaconda2/bin/pip install pwntools
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment