From 1f8b1065e18baff6eca0ff62ba71823b7c67bb3f Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 16 Feb 2022 13:50:22 -0300 Subject: [PATCH] Replace --threebuttons with --menu --- scripts/linkFiles.sh | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index b77df69..2473224 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -78,14 +78,13 @@ loopThroughFiles() { if [ -d "$DOTFILES/other" ]; then 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=("--threebuttons" " Install all " " Select each " " Cancel ") - displayDialogBox "${buttons[@]}" --yesno "$msg" VALUES - case $? in - 0) installAll=true ;; - 3) installAll=false ;; - 1) return ;; + msg="${msg} or do you prefer to select which ones to install?" + options=(1 "Install all" 2 "Select each") + selectedOption=$(displayDialogBox --menu "$msg" VALUES "${options[@]}" 3>&1 1>&2 2>&3) + [ $? -eq 1 ] && return + case $selectedOption in + 1) installAll=true ;; + 2) installAll=false ;; esac files=() while read -r -d '' srcFile; do