From 5aeff8503e3c8e227e5c40069cc965efb9437eb3 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 30 Dec 2021 20:49:56 -0300 Subject: [PATCH] Add dynamic calculations of width and height (from CocoASAIS) --- scripts/common.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/scripts/common.sh b/scripts/common.sh index f14b987..bbfb48f 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -23,6 +23,36 @@ useWhiptail() { whiptail "$@" 0 0 } +calcWidthAndRun() { + width=$(echo "$@" | grep -oP '(?<=").*?(?=")' | wc -c) + comm=$(echo "$@" | sed "s/WIDTH/$((${width}+8))/g") + if [[ $comm != *"3>&1 1>&2 2>&3" ]]; then + comm="${comm} 3>&1 1>&2 2>&3" + fi + commOutput=$(eval $comm) + exitStatus=$? + [ ! -z $commOutput ] && echo $commOutput + return $exitStatus +} + +calcHeightAndRun() { + str=$(echo "$@" | grep -oP '(?<=").*?(?=")') + newlines=$(printf "$str" | grep -c $'\n') + chars=$(echo "$str" | wc -c) + height=$(echo "$chars" "$newlines" | awk '{ + x = (($1 - $2 + ($2 * 60)) / 60) + printf "%d", (x == int(x)) ? x : int(x) + 1 + }') + comm=$(echo "$@" | sed "s/HEIGHT/$((5+$height))/g") + if [[ $comm != *"3>&1 1>&2 2>&3" ]]; then + toRun="${comm} 3>&1 1>&2 2>&3" + fi + commOutput=$(eval $comm) + exitStatus=$? + [ ! -z $commOutput ] && echo $commOutput + return $exitStatus +} + setDialogBox() { export dialogBox=${1} } \ No newline at end of file