Shorten the max line length to 100 (linkFiles.sh)
This commit is contained in:
parent
7087bf42ef
commit
0ffeb33bf9
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
@ -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)
|
Loading…
Reference in New Issue