我正在使用
zsh
和 Oh-my-zsh
和 cobolt2 主题。
并使用此 bash 代码查看日期和时间:
RPROMPT="%F{green}[%D{%a %f/%m/%y %b} | %D{%L:%M:%S}]"
并找到这个脚本来计算每个命令的执行时间:
function preexec() {
timer=$(date +%s%3N)
}
function precmd() {
if [ $timer ]; then
local now=$(date +%s%3N)
local d_ms=$(($now-$timer))
local d_s=$((d_ms / 1000))
local ms=$((d_ms % 1000))
local s=$((d_s % 60))
local m=$(((d_s / 60) % 60))
local h=$((d_s / 3600))
if ((h > 0)); then elapsed=${h}h${m}m
elif ((m > 0)); then elapsed=${m}m${s}s
elif ((s >= 10)); then elapsed=${s}.$((ms / 100))s
elif ((s > 0)); then elapsed=${s}.$((ms / 10))s
else elapsed=${ms}ms
fi
export RPROMPT="%F{cyan}${elapsed} %{$reset_color%}"
unset timer
fi
}
我怎样才能将其结合到代码中,并在左侧花时间使用另一种背景颜色以便于阅读?