Use checklist in linkFiles.sh
This commit is contained in:
parent
bcbb5eb222
commit
73d26cda70
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue