mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
simplified time string calculation
This commit is contained in:
parent
96d10e2147
commit
1b8f05a3d3
1 changed files with 3 additions and 7 deletions
|
@ -7,12 +7,8 @@ precmd() {
|
|||
local cmd_end_time=$(date '+%s')
|
||||
local tdiff=$((${cmd_end_time} - ${__timer_cmd_start_time}))
|
||||
unset __timer_cmd_start_time
|
||||
local tdiffstr='/'
|
||||
if (( tdiff >= 60 )); then
|
||||
tdiffstr+="$((tdiff / 60))m"
|
||||
fi
|
||||
tdiffstr+="$((tdiff % 60))s"
|
||||
local cols=$(($COLUMNS - ${#tdiffstr} - 1))
|
||||
echo -e "\033[1A\033[${cols}C ${tdiffstr}"
|
||||
local tdiffstr="$((tdiff / 60))m$((tdiff % 60))s"
|
||||
local cols=$(($COLUMNS - ${#tdiffstr#0m} - 2))
|
||||
echo -e "\033[1A\033[${cols}C \`${tdiffstr#0m}"
|
||||
fi
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue