fix(timer): minutes calculation logic (#12857)

master
shun095 1 year ago committed by GitHub
parent 69410e7020
commit d2e79501b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      plugins/timer/timer.plugin.zsh

@ -6,7 +6,7 @@ __timer_current_time() {
} }
__timer_format_duration() { __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 secs=$(printf "%.${TIMER_PRECISION:-1}f" $(($1 - 60 * mins)))
local duration_str=$(echo "${mins}m${secs}s") local duration_str=$(echo "${mins}m${secs}s")
local format="${TIMER_FORMAT:-/%d}" local format="${TIMER_FORMAT:-/%d}"

Loading…
Cancel
Save