mirror of
https://github.com/IlanCosman/tide.git
synced 2024-12-18 17:41:37 +03:00
11 lines
350 B
Fish
11 lines
350 B
Fish
function lean_load_right_prompt_modules
|
|
set -g lean_right_prompt_modules_order leanTimer
|
|
set -g leanTimer (_lean_timer)
|
|
end
|
|
|
|
function _lean_timer
|
|
if test (math $CMD_DURATION/1000) -gt $lean_timer_duration
|
|
set -l leanTimerOutput (math --scale=$lean_timer_decimals $CMD_DURATION/1000)"s"
|
|
echo -n $leanTimerOutput
|
|
end
|
|
end |