24 lines
911 B
Bash
Executable File
24 lines
911 B
Bash
Executable File
# Install basic dependencies
|
|
pacman -Syu curl wget gpg
|
|
|
|
# Librewolf repo
|
|
echo "deb [arch=amd64] http://deb.librewolf.net $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/librewolf.list
|
|
#echo "deb [arch=amd64] http://deb.librewolf.net bullseye main" | tee /etc/apt/sources.list.d/librewolf.list
|
|
wget https://deb.librewolf.net/keyring.gpg -O /etc/apt/trusted.gpg.d/librewolf.gpg
|
|
|
|
|
|
# Install my default apt stuff
|
|
pacman -Syu 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
|
|
|
|
# Update python pip
|
|
python3 -m pip install -U pip
|
|
|
|
# Snap installs
|
|
snap install core discord code
|
|
|
|
# Install Ghidra
|
|
git clone https://github.com/NationalSecurityAgency/ghidra.git /home/michael/Applications/ghidra
|
|
ln -s /home/michael/Applications/ghidra/ghidraRun /usr/bin/ghidra
|
|
|
|
|