This commit is contained in:
codebitlab 2025-12-01 22:23:24 -03:00 committed by GitHub
commit 9fb83bbf3d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -135,4 +135,6 @@ function apt-list-packages {
grep -v deinstall | \
sort -n | \
awk '{print $1" "$2}'
# Install package with recommended AND suggested packages
alias apti='apt install -o APT::Install-Recommends="true" -o APT::Install-Suggests="true"'
}