We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a0b759 commit 667653bCopy full SHA for 667653b
rc/shell/aliases
@@ -131,8 +131,10 @@ fi
131
PACKAGE_MANAGER_CMD='sudo printf "" && ${PACKAGE_MANAGER}'
132
CAN_PM_ALIAS_AUTOCOMPLETE=false
133
134
-if [[ "${PACKAGE_MANAGER}" == "paru" ]] \
135
-|| [[ "${PACKAGE_MANAGER}" == "yay" ]]; then
+if [[ "${PACKAGE_MANAGER}" == "apt" ]]; then
+ PACKAGE_MANAGER_CMD="sudo apt -y"
136
+elif [[ "${PACKAGE_MANAGER}" == "paru" ]] \
137
+ || [[ "${PACKAGE_MANAGER}" == "yay" ]]; then
138
PACKAGE_MANAGER_CMD="${PACKAGE_MANAGER_CMD} --noredownload --norebuild --sudoloop" # Optimisations
139
PACKAGE_MANAGER_CMD="${PACKAGE_MANAGER_CMD} --noconfirm" # Prompt skip
140
PACKAGE_MANAGER_CMD="${PACKAGE_MANAGER_CMD} --bottomup --color auto" # Visuals
0 commit comments