0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/timer/timer.plugin.zsh

39 lines
1.1 KiB
Bash
Raw Normal View History

2020-08-31 17:38:30 +02:00
zmodload zsh/datetime
2015-11-16 04:08:16 +01:00
__timer_current_time() {
2020-08-31 17:38:30 +02:00
zmodload zsh/datetime
echo $EPOCHREALTIME
2015-11-16 04:08:16 +01:00
}
__timer_format_duration() {
local mins=$(printf '%.0f' $(($1 / 60)))
2015-11-17 04:20:26 +01:00
local secs=$(printf "%.${TIMER_PRECISION:-1}f" $(($1 - 60 * mins)))
2015-11-16 04:08:16 +01:00
local duration_str=$(echo "${mins}m${secs}s")
2015-11-18 02:50:30 +01:00
local format="${TIMER_FORMAT:-/%d}"
echo "${format//\%d/${duration_str#0m}}"
2015-11-16 04:08:16 +01:00
}
2015-11-19 02:33:38 +01:00
__timer_save_time_preexec() {
2015-11-16 04:08:16 +01:00
__timer_cmd_start_time=$(__timer_current_time)
2015-11-14 05:42:21 +01:00
}
2015-11-19 02:33:38 +01:00
__timer_display_timer_precmd() {
2015-11-16 04:08:16 +01:00
if [ -n "${__timer_cmd_start_time}" ]; then
local cmd_end_time=$(__timer_current_time)
2015-11-15 05:48:26 +01:00
local tdiff=$((cmd_end_time - __timer_cmd_start_time))
2015-11-14 05:42:21 +01:00
unset __timer_cmd_start_time
if [[ -z "${TIMER_THRESHOLD}" || ${tdiff} -ge "${TIMER_THRESHOLD}" ]]; then
local last_cmd="${history[$((HISTCMD - 1))]%% *}"
if [[ "$last_cmd" != clear ]]; then
local tdiffstr=$(__timer_format_duration ${tdiff})
local cols=$((COLUMNS - ${#tdiffstr} - 1))
echo -e "\033[1A\033[${cols}C ${tdiffstr}"
fi
fi
2015-11-14 05:42:21 +01:00
fi
}
2015-11-19 02:33:38 +01:00
autoload -U add-zsh-hook
add-zsh-hook preexec __timer_save_time_preexec
add-zsh-hook precmd __timer_display_timer_precmd