From a6f48ed9fbf4b0129d5b625cd7343eb110992626 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 31 Dec 2021 15:47:49 -0300 Subject: [PATCH] Fix bugs --- scripts/common.sh | 2 +- scripts/install.sh | 2 +- scripts/linkFiles.sh | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/common.sh b/scripts/common.sh index 900fe2d..044129f 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -39,7 +39,7 @@ useDialog() { height=$(calcHeight "$str") formatOptions "$@" if [ $found = false ]; then - height=0; width=0 + height=10; width=60 dialog "$@" ${height} ${width} else dialog "${options[@]}" diff --git a/scripts/install.sh b/scripts/install.sh index 43ac649..d6bb38c 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -3,7 +3,7 @@ cloneAndMake() { displayDialogBox --infobox "Downloading ${1}" git clone $2 > /dev/null 2>&1 - cd $1; sudo make install; cd .. + cd $1; sudo make install > /dev/null 2>&1; cd .. } downloadAndInstallPackages() { diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index d85f44e..a664d7b 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -82,7 +82,10 @@ loopThroughFiles() { if [ -d "$DOTFILES_OTHER" ]; then filesOutput=$(find -H "$DOTFILES_OTHER" | sed -n 2~1p | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }') - displayDialogBox --yesno "There are 'other' files, would you like to install them?\n\n$filesOutput" || return + files=""; for item in $filesOutput; do + files="${files}$item\n" + done + displayDialogBox --yesno "There are 'other' files, would you like to install them?\n\n${files}" || return fi sudo bash -c "$(declare -f runDetachedScript); $(declare -f linkFile); "runDetachedScript""