mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-12-19 05:51:57 +00:00
Use GMT as timezone for command_execution_time
segment
This commit is contained in:
parent
a202537dd7
commit
674ae068b6
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue