This commit is contained in:
Santiago Lo Coco 2021-12-31 15:47:49 -03:00
parent d66fc9a611
commit a6f48ed9fb
3 changed files with 6 additions and 3 deletions

View File

@ -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[@]}"

View File

@ -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() {

View File

@ -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""