From 27c05d4ea3c1a64a716509d314167aa65f128b1a Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 15 Feb 2022 20:49:50 -0300 Subject: [PATCH] Use --threebuttons --- scripts/linkFiles.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index 9ec5b8a..1590644 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -81,9 +81,8 @@ loopThroughFiles() { 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} you don't want to install them, you can press Cancel." - buttons=("--yes-label" " Install all " "--extra-button") - buttons+=("--extra-label" " Select which " "--no-label" " Cancel ") - displayDialogBox "${buttons[@]}" --yesno "$msg" + buttons=("--threebuttons" " Install all " " Select each " " Cancel ") + displayDialogBox "${buttons[@]}" --yesno "$msg" VALUES case $? in 0) installAll=true ;; 3) installAll=false ;;