9 lines
106 B
Fish
9 lines
106 B
Fish
|
#!/bin/fish
|
||
|
|
||
|
function fish_right_prompt
|
||
|
set_color grey
|
||
|
printf (date '+%H:%M:%S')
|
||
|
set_color normal
|
||
|
end
|
||
|
|