1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2025-01-11 23:16:46 +01:00

fix(timer): fix calculation logic of timer plugin

This commit is contained in:
ishitaku5522 2024-12-19 17:33:45 +09:00
parent b9e73b4481
commit 1eb5ce278c

View file

@ -6,7 +6,7 @@ __timer_current_time() {
}
__timer_format_duration() {
local mins=$(printf '%.0f' $(($1 / 60)))
local mins=$(printf '%.0f' $(($(IFS='.' read int dec <<< "$1"; echo $int) / 60)))
local secs=$(printf "%.${TIMER_PRECISION:-1}f" $(($1 - 60 * mins)))
local duration_str=$(echo "${mins}m${secs}s")
local format="${TIMER_FORMAT:-/%d}"