1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-12 00:40:07 +00:00

customizable timer format

This commit is contained in:
Robert Strack 2015-11-17 20:50:30 -05:00
parent 111dd018b9
commit 96148d2275

View file

@ -6,7 +6,8 @@ __timer_format_duration() {
local mins=$(printf '%.0f' $(($1 / 60)))
local secs=$(printf "%.${TIMER_PRECISION:-1}f" $(($1 - 60 * mins)))
local duration_str=$(echo "${mins}m${secs}s")
echo "${TIMER_SYMBOL:-\`}${duration_str#0m}"
local format="${TIMER_FORMAT:-/%d}"
echo "${format//\%d/${duration_str#0m}}"
}
preexec() {