mirror of
https://github.com/IlanCosman/tide.git
synced 2024-12-19 01:51:32 +03:00
9 lines
267 B
Fish
9 lines
267 B
Fish
function _tide_context
|
|
if set -q SSH_TTY
|
|
set_color $tide_context_ssh_color
|
|
printf '%s ' $USER'@'(prompt_hostname)
|
|
else if test $USER = 'root'
|
|
set_color $tide_context_root_color
|
|
printf '%s ' $USER'@'(prompt_hostname)
|
|
end
|
|
end |