dotfiles/fish/functions/fish_right_prompt.fish

7 lines
181 B
Fish
Raw Normal View History

2022-08-12 12:44:33 +02:00
function fish_right_prompt
set_color $fish_color_autosuggestion 2> /dev/null; or set_color 555
2024-01-15 10:04:24 +01:00
printf "%s@%s " $USER $hostname
2022-08-12 12:44:33 +02:00
date "+%H:%M:%S"
set_color normal
end