ohmyzsh/plugins/timer/timer.plugin.zsh

31 lines
920 B
Bash
Raw Normal View History

2015-11-16 03:08:16 +00:00
__timer_current_time() {
perl -MTime::HiRes=time -e'print time'
}
__timer_format_duration() {
local mins=$(printf '%.0f' $(($1 / 60)))
2015-11-17 03:20:26 +00:00
local secs=$(printf "%.${TIMER_PRECISION:-1}f" $(($1 - 60 * mins)))
2015-11-16 03:08:16 +00:00
local duration_str=$(echo "${mins}m${secs}s")
2015-11-18 01:50:30 +00:00
local format="${TIMER_FORMAT:-/%d}"
echo "${format//\%d/${duration_str#0m}}"
2015-11-16 03:08:16 +00:00
}
2015-11-19 01:33:38 +00:00
__timer_save_time_preexec() {
2015-11-16 03:08:16 +00:00
__timer_cmd_start_time=$(__timer_current_time)
2015-11-14 04:42:21 +00:00
}
2015-11-19 01:33:38 +00:00
__timer_display_timer_precmd() {
2015-11-16 03:08:16 +00:00
if [ -n "${__timer_cmd_start_time}" ]; then
local cmd_end_time=$(__timer_current_time)
2015-11-15 04:48:26 +00:00
local tdiff=$((cmd_end_time - __timer_cmd_start_time))
2015-11-14 04:42:21 +00:00
unset __timer_cmd_start_time
2015-11-16 03:08:16 +00:00
local tdiffstr=$(__timer_format_duration ${tdiff})
local cols=$((COLUMNS - ${#tdiffstr} - 1))
echo -e "\033[1A\033[${cols}C ${tdiffstr}"
2015-11-14 04:42:21 +00:00
fi
}
2015-11-19 01:33:38 +00:00
autoload -U add-zsh-hook
add-zsh-hook preexec __timer_save_time_preexec
add-zsh-hook precmd __timer_display_timer_precmd