Replace --threebuttons with --menu

This commit is contained in:
Santiago Lo Coco 2022-02-16 13:50:22 -03:00
parent e0914228e0
commit 1f8b1065e1
1 changed files with 7 additions and 8 deletions

View File

@ -78,14 +78,13 @@ loopThroughFiles() {
if [ -d "$DOTFILES/other" ]; then if [ -d "$DOTFILES/other" ]; then
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?"
msg="${msg} you don't want to install them, you can press Cancel." options=(1 "Install all" 2 "Select each")
buttons=("--threebuttons" " Install all " " Select each " " Cancel ") selectedOption=$(displayDialogBox --menu "$msg" VALUES "${options[@]}" 3>&1 1>&2 2>&3)
displayDialogBox "${buttons[@]}" --yesno "$msg" VALUES [ $? -eq 1 ] && return
case $? in case $selectedOption in
0) installAll=true ;; 1) installAll=true ;;
3) installAll=false ;; 2) installAll=false ;;
1) return ;;
esac esac
files=() files=()
while read -r -d '' srcFile; do while read -r -d '' srcFile; do