Use checklist in linkFiles.sh

This commit is contained in:
Santiago Lo Coco 2022-02-16 11:26:03 -03:00
parent bcbb5eb222
commit 73d26cda70
1 changed files with 4 additions and 3 deletions

View File

@ -90,10 +90,11 @@ loopThroughFiles() {
files=() files=()
while read -r -d '' srcFile; do while read -r -d '' srcFile; do
file=$(echo "$srcFile" | awk '{ sub(/.*dotfiles\/other\//, ""); print }') file=$(echo "$srcFile" | awk '{ sub(/.*dotfiles\/other\//, ""); print }')
msg="\nWould you like to install:\n\n'/$file'?" files+=("$srcFile" "$file" "OFF")
[ "$installAll" = true ] || displayDialogBox --yesno "$msg" || continue
files+=("$srcFile" " ")
done < <(find -H "$DOTFILES/other" -mindepth 1 -type f -print0) 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 fi
password=$(displayDialogBox --passwordbox "\nEnter your password." VALUES 3>&1 1>&2 2>&3) password=$(displayDialogBox --passwordbox "\nEnter your password." VALUES 3>&1 1>&2 2>&3)