We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8862c1d + 602d0a2 commit 9558eefCopy full SHA for 9558eef
fish_right_prompt.fish
@@ -78,5 +78,8 @@ function __print_duration
78
# Everything else
79
printf "%02d:%02d:%02d.%03d\n" $hours $minutes $seconds $millis
80
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)
84
85
0 commit comments