mirror of https://github.com/bjeanes/dotfiles.git
20 lines
292 B
Bash
20 lines
292 B
Bash
|
function user_at_host() {
|
||
|
local str
|
||
|
|
||
|
if [[ "$USER" != "bjeanes" ]]; then
|
||
|
str="$USER"
|
||
|
|
||
|
if [[ "$USER" == "root" ]]; then
|
||
|
str="$pr_red$str$pr_reset"
|
||
|
fi
|
||
|
|
||
|
str="${str}@"
|
||
|
fi
|
||
|
|
||
|
if [[ -n "$SSH_TTY" ]]; then
|
||
|
str="$str$pr_blue`hostname -s`$pr_reset"
|
||
|
fi
|
||
|
|
||
|
echo $str
|
||
|
}
|