Compare commits

...

2 Commits

Author SHA1 Message Date
Philippe Caseiro c563ba96f0 Make it more readble 2022-03-24 13:09:14 +01:00
Philippe Caseiro 29a306f988 Adding nice Balance at the moment 2022-03-24 13:07:30 +01:00
1 changed files with 29 additions and 15 deletions

32
badgy
View File

@ -24,21 +24,34 @@ devalidate()
s2h() s2h()
{ {
local sc=${1} local sc=0
local sign=""
if [ ${1} -lt 0 ]; then
sign="-"
sc=$(echo ${1} | cut -c2-)
else
sc=${1}
fi
local h=$(( sc / 3600)) local h=$(( sc / 3600))
local m=$(( (sc % 3600) / 60 )) local m=$(( (sc % 3600) / 60 ))
local s=$(( sc % 60)) local s=$(( sc % 60))
printf "%dh%02dm" "${h}" "${m}" printf "%s%dh%02dm" "${sign}" "${h}" "${m}"
} }
getNewBalance() getNewBalance()
{ {
local wk=25200 local workDay=25200
local blh=$(echo ${1} | cut -d ':' -f 1) local blh=$(echo ${1} | cut -d ':' -f 1 | cut -c2-)
local blm=$(echo ${1} | cut -d ':' -f 2) local blm=$(echo ${1} | cut -d ':' -f 2)
local bls="" local bls=$((blh*3600 + blm*60))
local nbls="" local nbls=0
echo ${nbls} if [ "${bls}" -le "${workDay}" ]; then
nbls=$((${2}-(workDay - bls)))
else
nbls=$((bls+${2}))
fi
echo $nbls
} }
getCapitalTime() getCapitalTime()
@ -70,8 +83,9 @@ getCapitalTime()
echo echo
echo "Your time balance is: ${sl}" echo "Your time balance is: ${sl}"
echo "Today you worked $(s2h ${dr})" echo "Today you worked: $(s2h ${dr})"
#echo "If you validate now your balance will be : ${nbl}" echo
echo "Balance if you validate now: $(s2h ${nbl})"
} }
show() show()