adding none to AURHELPER

This commit is contained in:
mfgbhatti 2022-02-20 17:34:40 +00:00
parent 2ba0a3eeb9
commit 9aeba09d47
2 changed files with 4 additions and 1 deletions

View File

@ -39,6 +39,9 @@ case "$AURHELPER" in
"pikaur")
git clone "https://aur.archlinux.org/pikaur.git"
;;
none)
echo "No AUR helper is selected. Skipping..."
;;
*)
something_failed
;;

View File

@ -490,7 +490,7 @@ set_desktop() {
set_aur_helper() {
title "Select your preferred AUR helper"
SELECTION=("yay" "trizen" "aurman" "aura" "pikaur")
SELECTION=("yay" "trizen" "aurman" "aura" "pikaur" "none")
PS3="$PROMPT"
select OPT in "${SELECTION[@]}"; do
if elements_present "$OPT" "${SELECTION[@]}"; then