mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-03-09 21:05:50 +08:00
14 lines
259 B
Fish
14 lines
259 B
Fish
![]() |
function fish_right_prompt
|
||
|
set -l exit_code $status
|
||
|
if test $exit_code -ne 0
|
||
|
set_color red
|
||
|
else
|
||
|
set_color green
|
||
|
end
|
||
|
printf '%d' $exit_code
|
||
|
set_color -o 666
|
||
|
echo '|'
|
||
|
set_color -o 777
|
||
|
printf '%s' (date +%H:%M:%S)
|
||
|
set_color normal
|
||
|
end
|