Files
dotfiles/script/install.d/03-apt.sh
2025-12-23 22:22:20 +02:00

28 lines
591 B
Bash

#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# (distros with apt only) Install core apt packages.
#
# Skip in Codespaces (pre-installed in universal image)
[[ "$DOTS_ENV" == "codespaces" ]] && { log_pass "Skipping in Codespaces"; return 0; }
# apt only
[[ "$DOTS_PKG" != "apt" ]] && { log_warn "Skipping: Not using apt"; return 0; }
apt_packages=(
ca-certificates
curl
gnupg
gnupg2
wget
)
sudo apt-get update -qq
sudo apt-get install -qq "${apt_packages[@]}"
unset apt_packages
apt --version