Use --threebuttons

This commit is contained in:
Santiago Lo Coco 2022-02-15 20:49:50 -03:00
parent 8b89f32724
commit 27c05d4ea3
1 changed files with 2 additions and 3 deletions

View File

@ -81,9 +81,8 @@ loopThroughFiles() {
msg="\nThere are 'other' files, would you like to install all of them" msg="\nThere are 'other' files, would you like to install all of them"
msg="${msg} or do you prefer to select which ones to install? Also, if" msg="${msg} or do you prefer to select which ones to install? Also, if"
msg="${msg} you don't want to install them, you can press Cancel." msg="${msg} you don't want to install them, you can press Cancel."
buttons=("--yes-label" " Install all " "--extra-button") buttons=("--threebuttons" " Install all " " Select each " " Cancel ")
buttons+=("--extra-label" " Select which " "--no-label" " Cancel ") displayDialogBox "${buttons[@]}" --yesno "$msg" VALUES
displayDialogBox "${buttons[@]}" --yesno "$msg"
case $? in case $? in
0) installAll=true ;; 0) installAll=true ;;
3) installAll=false ;; 3) installAll=false ;;