mirror of
https://github.com/IlanCosman/tide.git
synced 2024-11-23 17:02:24 +03:00
20 lines
624 B
Fish
20 lines
624 B
Fish
function _tide_cmd_duration
|
|
if test $CMD_DURATION -gt $tide_cmd_duration_threshold
|
|
set -l seconds (math --scale=$tide_cmd_duration_decimals "$CMD_DURATION/1000" % 60)
|
|
set -l minutes (math -s0 "$CMD_DURATION/60000" % 60)
|
|
set -l hours (math -s0 "$CMD_DURATION/3600000" % 60)
|
|
|
|
if test $seconds -eq 0
|
|
set -e seconds
|
|
end
|
|
if test $minutes -eq 0
|
|
set -e minutes
|
|
end
|
|
if test $hours -eq 0
|
|
set -e hours
|
|
end
|
|
|
|
set_color $tide_cmd_duration_color
|
|
printf '%s ' {$hours}'h' {$minutes}'m' {$seconds}'s'
|
|
end
|
|
end |