mirror of
https://codeberg.org/mclemens/shellfolio.git
synced 2024-12-28 03:26:37 -05:00
Bugfix: column widths
This commit is contained in:
parent
a6cebb6713
commit
94c2262297
@ -2,9 +2,11 @@
|
||||
|
||||
. ~/.shellfolio
|
||||
|
||||
# cell colors
|
||||
minus=$(tput setaf 1)
|
||||
plus=$(tput setaf 2)
|
||||
neutral=$(tput sgr0)
|
||||
# initial values
|
||||
totalvalue=0
|
||||
totalgain=0
|
||||
maxsymbolw=3
|
||||
@ -16,6 +18,7 @@ maxamountw=6
|
||||
maxvaluew=5
|
||||
maxgainw=5
|
||||
linewidth=80
|
||||
# arrays
|
||||
declare -a resultarr
|
||||
declare -a symbol
|
||||
declare -a change1h
|
||||
@ -61,6 +64,7 @@ do
|
||||
col1h[$i]=$(colorize ${change1h[$i]})
|
||||
col24h[$i]=$(colorize ${change24h[$i]})
|
||||
col7d[$i]=$(colorize ${change7d[$i]})
|
||||
|
||||
# check if $symbol is set, split into $amount and $paid
|
||||
if [ -z ${!symbol[$i]} ]; then
|
||||
amount[$i]=0
|
||||
@ -96,6 +100,7 @@ do
|
||||
((++i))
|
||||
done
|
||||
|
||||
# add 1 space for % symbol
|
||||
((++maxchange1hw))
|
||||
((++maxchange24hw))
|
||||
((++maxchange7dw))
|
||||
@ -103,8 +108,7 @@ done
|
||||
linewidth=$((8 + $maxsymbolw + $maxusdw + $maxchange1hw + $maxchange24hw + $maxchange7dw + $maxamountw + $maxvaluew + $maxgainw))
|
||||
|
||||
# print table header captions
|
||||
usdtemp=$(($maxusdw + 1))
|
||||
printf "$neutral%${maxsymbolw}s %${usdtemp}s %${maxchange1hw}s %${maxchange24hw}s %${maxchange7dw}s %${maxamountw}s %${maxvaluew}s %${maxgainw}s\n" "Coin" "USD" "1h" "24h" "7d" "Amount" "Value" "Gain"
|
||||
printf "$neutral%${maxsymbolw}s %${maxusdw}s %${maxchange1hw}s %${maxchange24hw}s %${maxchange7dw}s %${maxamountw}s %${maxvaluew}s %${maxgainw}s\n" "Coin" "USD" "1h" "24h" "7d" "Amount" "Value" "Gain"
|
||||
|
||||
# print table header line
|
||||
seq -s- ${linewidth}|tr -d '[:digit:]'
|
||||
|
Loading…
Reference in New Issue
Block a user