tide/functions/_tide_context.fish

9 lines
267 B
Fish
Raw Normal View History

2020-05-19 06:03:25 +03:00
function _tide_context
if set -q SSH_TTY
2020-05-19 06:03:25 +03:00
set_color $tide_context_ssh_color
2020-05-18 20:06:02 +03:00
printf '%s ' $USER'@'(prompt_hostname)
else if test $USER = 'root'
2020-05-19 06:03:25 +03:00
set_color $tide_context_root_color
2020-05-18 20:06:02 +03:00
printf '%s ' $USER'@'(prompt_hostname)
end
end