From 73d26cda70abc6e923e70624267a594fcd2f84ae Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 16 Feb 2022 11:26:03 -0300 Subject: [PATCH] Use checklist in linkFiles.sh --- scripts/linkFiles.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index 95419b0..951e7ff 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -90,10 +90,11 @@ loopThroughFiles() { files=() while read -r -d '' srcFile; do file=$(echo "$srcFile" | awk '{ sub(/.*dotfiles\/other\//, ""); print }') - msg="\nWould you like to install:\n\n'/$file'?" - [ "$installAll" = true ] || displayDialogBox --yesno "$msg" || continue - files+=("$srcFile" " ") + files+=("$srcFile" "$file" "OFF") done < <(find -H "$DOTFILES/other" -mindepth 1 -type f -print0) + + msg="\nSelect the files that you want to install." + files=("$(displayDialogBox --checklist "$msg" VALUES "${files[@]}" 3>&1 1>&2 2>&3)") fi password=$(displayDialogBox --passwordbox "\nEnter your password." VALUES 3>&1 1>&2 2>&3)