2022-03-25 16:45:03 -04:00
|
|
|
LOC=$1
|
|
|
|
|
|
|
|
if [ -z "$1" ]
|
|
|
|
then
|
|
|
|
LOC="./.auto-install"
|
|
|
|
fi
|
2022-03-23 18:24:02 -04:00
|
|
|
|
2022-03-25 16:45:03 -04:00
|
|
|
git clone https://gitea.voxelvortex.tk:443/voxelvortex/InstaTout.git $LOC
|
2022-03-23 18:24:02 -04:00
|
|
|
|
2022-03-24 00:38:41 -04:00
|
|
|
# Install all the generic programs
|
2022-03-23 18:24:02 -04:00
|
|
|
$LOC/program_install.sh
|
|
|
|
|
2022-03-24 00:38:41 -04:00
|
|
|
# Make sure all the packages I want for my desktop are installed
|
2022-03-23 18:24:02 -04:00
|
|
|
apt-get update &&\
|
2022-03-24 00:38:41 -04:00
|
|
|
apt-get install -y ungoogled-chromium librewolf code python3 python3-pip python3-wheel docker-compose docker.io zsh gdb p7zip-full git iputils-* dnsutils net-tools handbrake* ffmpeg htop nano vim neovim nmap nvidia-detect ncat ssh tree vlc snapd obs-studio audacity filezilla firmware-iwlwifi
|
|
|
|
|
|
|
|
# Reset the wifi card so it shows up in settings
|
|
|
|
modprobe -r iwlwifi && modprobe iwlwifi
|
|
|
|
|
|
|
|
# If wired networking is working, but gnome doesnt recognize it properly, check out this post:
|
|
|
|
# https://forums.debian.net/viewtopic.php?t=104561
|
2022-03-23 18:24:02 -04:00
|
|
|
|
2022-03-24 19:04:58 -04:00
|
|
|
sh $LOC/finalize.sh
|