Skip to content

Commit 9558eef

Browse files
author
Hasan Ozgan
authoredApr 1, 2020
Merge branch 'master' into duration-in-right-prompt
2 parents 8862c1d + 602d0a2 commit 9558eef

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎fish_right_prompt.fish

+3
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,8 @@ function __print_duration
7878
# Everything else
7979
printf "%02d:%02d:%02d.%03d\n" $hours $minutes $seconds $millis
8080
end
81+
82+
function _convertsecs
83+
printf "%02d:%02d:%02d\n" (math -s0 $argv[1] / 3600) (math -s0 (math $argv[1] \% 3600) / 60) (math -s0 $argv[1] \% 60)
8184
end
8285

0 commit comments

Comments
 (0)