2022-03-19 03:07:19 -04:00
|
|
|
# Install basic dependencies
|
2022-06-06 21:06:31 -04:00
|
|
|
pacman -Syu curl wget gpg
|
2022-03-19 03:07:19 -04:00
|
|
|
|
2022-03-23 18:24:02 -04:00
|
|
|
# Install my default apt stuff
|
2022-06-06 21:40:15 -04:00
|
|
|
pacman -Syu proxychains shadowsocks shadowsocks-qt5 chromium firefox python3 python-pip python-wheel docker-compose docker zsh p7zip git iputils dnsutils net-tools htop nano vim neovim netcat ssh tree vlc neofetch zip unzip cryptsetup virt-manager qemu
|
2022-03-19 03:07:19 -04:00
|
|
|
|
|
|
|
# Update python pip
|
|
|
|
python3 -m pip install -U pip
|
|
|
|
|
|
|
|
# Snap installs
|
2022-06-06 21:06:31 -04:00
|
|
|
snap install core discord code
|
2022-03-19 03:07:19 -04:00
|
|
|
|
2022-06-06 21:40:15 -04:00
|
|
|
# librewolf
|
|
|
|
mkdir -p /home/michael/Applications
|
|
|
|
cd /home/michael/Applications
|
|
|
|
git clone https://aur.archlinux.org/librewolf-bin.git librewolf
|
|
|
|
cd librewolf
|
|
|
|
gpg --recieve-keys 2954CC8585E27A3F
|
|
|
|
makepkg -si
|
|
|
|
|
|
|
|
#zsh highlighting
|
|
|
|
mkdir -p /home/michael/.scripts
|
|
|
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git /home/michael/.scripts/zsh-syntax-highlighting
|
|
|
|
|
|
|
|
|
|
|
|
# rust
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
|
|
|
2022-03-20 00:53:09 -04:00
|
|
|
# Install Ghidra
|
2022-06-06 21:06:31 -04:00
|
|
|
git clone https://github.com/NationalSecurityAgency/ghidra.git /home/michael/Applications/ghidra
|
|
|
|
ln -s /home/michael/Applications/ghidra/ghidraRun /usr/bin/ghidra
|
2022-03-20 00:53:09 -04:00
|
|
|
|
2022-03-23 18:24:02 -04:00
|
|
|
|