1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-21 11:00:08 +00:00

Use GMT as timezone for command_execution_time segment

This commit is contained in:
Dominik Ritter 2017-02-14 21:38:39 +01:00
parent a202537dd7
commit 674ae068b6

View file

@ -572,9 +572,9 @@ prompt_command_execution_time() {
# See http://unix.stackexchange.com/a/89748 # See http://unix.stackexchange.com/a/89748
local humanReadableDuration local humanReadableDuration
if (( _P9K_COMMAND_DURATION > 3600 )); then if (( _P9K_COMMAND_DURATION > 3600 )); then
humanReadableDuration=$(strftime '%H:%M:%S' $(( int(rint(_P9K_COMMAND_DURATION)) ))) humanReadableDuration=$(TZ=GMT; strftime '%H:%M:%S' $(( int(rint(_P9K_COMMAND_DURATION)) )))
elif (( _P9K_COMMAND_DURATION > 60 )); then elif (( _P9K_COMMAND_DURATION > 60 )); then
humanReadableDuration=$(strftime '%M:%S' $(( int(rint(_P9K_COMMAND_DURATION)) ))) humanReadableDuration=$(TZ=GMT; strftime '%M:%S' $(( int(rint(_P9K_COMMAND_DURATION)) )))
else else
# If the command executed in seconds, print as float. # If the command executed in seconds, print as float.
# Convert to float # Convert to float