From 0ffeb33bf949dda6bb49a60b0af4fbebb9054afb Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 1 Feb 2022 18:08:09 -0300 Subject: [PATCH] Shorten the max line length to 100 (linkFiles.sh) --- scripts/linkFiles.sh | 10 +++++++--- scripts/test.sh | 5 +++++ 2 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 scripts/test.sh diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index ed128bb..fc663ab 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -14,7 +14,9 @@ linkFile() { mv "$2" "${2}.backup" ln -s "$1" "$2" else - selectedOption=$(displayDialogBox --menu "\nFile already exists: $(basename "$1"), what would you like to do?" VALUES 0 1 "Skip" 2 "Skip all" 3 "Overwrite" 4 "Overwrite all" 5 "Backup" 6 "Backup all" 3>&1 1>&2 2>&3) + msg="\nFile already exists: $(basename "$1"), what would you like to do?" + options=(1 "Skip" 2 "Skip all" 3 "Overwrite" 4 "Overwrite all" 5 "Backup" 6 "Backup all") + selectedOption=$(displayDialogBox --menu "$msg" VALUES 0 "${options[@]}" 3>&1 1>&2 2>&3) if [ $? -eq 1 ]; then exit 0 fi @@ -81,12 +83,14 @@ loopThroughFiles() { item=$(echo "$item" | awk '{ sub(/.*dotfiles\/other\//, ""); print }') files="${files}$item\n" done < <(find -H "$DOTFILES/other" -mindepth 1 -type f -print0) - displayDialogBox --yesno "\nThere are 'other' files, would you like to install them?\n\n${files}" || return + msg="\nThere are 'other' files, would you like to install them?\n\n${files}" + displayDialogBox --yesno "$msg" || return fi password=$(displayDialogBox --passwordbox "\nEnter your password." VALUES 3>&1 1>&2 2>&3) echo "$password" | sudo -S bash -c "" > /dev/null 2>&1 - echo "$password" | sudo -S bash -c "$(declare -f runDetachedScript); $(declare -f linkFile); runDetachedScript getDialogBox" + cmd="$(declare -f runDetachedScript); $(declare -f linkFile); runDetachedScript getDialogBox" + echo "$password" | sudo -S bash -c "$cmd" unset password } diff --git a/scripts/test.sh b/scripts/test.sh new file mode 100644 index 0000000..9ba4aff --- /dev/null +++ b/scripts/test.sh @@ -0,0 +1,5 @@ +source sadedot/scripts/common.sh +setDialogBox "dialog" + msg="\nFile already exists: $(basename "$1"), what would you like to do?" + options=(1 "Skip" 2 "Skip ALL" 3 "Overwrite" 4 "Overwrite all" 5 "Backup" 6 "Backup all") + selectedOption=$(displayDialogBox --menu "$msg" VALUES 0 "${options[@]}" 3>&1 1>&2 2>&3) \ No newline at end of file