2024-01-21 18:54:19 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-01-21 17:22:26 +00:00
|
|
|
function install {
|
|
|
|
which $1 &> /dev/null
|
|
|
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "Installing: ${1}..."
|
|
|
|
sudo apt install -y $1
|
|
|
|
else
|
|
|
|
echo "Already installed: ${1}"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-01-21 20:18:40 +00:00
|
|
|
apt_packages=( "curl" "git" "htop" "tmux" "gimp" "inkscape" "texlive-full" "stow" "vlc" "blender" "gparted" "docker.io" "docker-compose" "python3-pip" "wget" "tree" "universal-ctags" "zathura")
|
|
|
|
apt_packages=( "curl" "git" "htop" "tmux" "gimp" "inkscape" "stow" "vlc" "blender" "gparted" "docker.io" "docker-compose" "python3-pip" "wget" "tree" "universal-ctags" "zathura")
|
2024-01-21 17:22:26 +00:00
|
|
|
|
|
|
|
sudo apt update
|
2024-01-21 20:26:12 +00:00
|
|
|
install "git"
|
|
|
|
install "htop"
|
|
|
|
install "stow"
|
|
|
|
install "wget"
|
|
|
|
install "tree"
|
|
|
|
|
2024-01-21 17:22:26 +00:00
|
|
|
|
|
|
|
|