1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2025-12-12 15:34:50 +08:00

Compare commits

...

2 Commits

Author SHA1 Message Date
codebitlab
bec09d58fb
Merge e28ccfdc57 into 72acd2ca90 2025-12-08 08:33:41 -08:00
codebitlab
e28ccfdc57
feat(ubuntu): add apti alias with recommended packages 2025-11-12 21:59:46 -08:00

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"'
}