Update default.inc

This commit is contained in:
2023-04-30 15:27:21 -05:00
parent ac9c02762f
commit bb5a10bd09

View File

@@ -157,7 +157,11 @@ SHOW_TIME() {
fi fi
if [ $min != 0 ] && [ $day = 0 ]; then if [ $min != 0 ] && [ $day = 0 ]; then
if [ $hour != 0 ]; then t+=", "; fi if [ $hour != 0 ]; then t+=", "; fi
t+="${min} mins ${sec} secs" t+="${min} mins"
fi
if [ "${1}" == "s" ]; then
if [ $hour != 0 ] || [ $min != 0 ]; then t+=", "; fi
t+="${sec} secs"
fi fi
echo ${t} echo ${t}
} }