mirror of https://gitlab.com/ceda_ei/wish
17 lines
333 B
Bash
17 lines
333 B
Bash
function wish_hostname_start() {
|
|
return 0
|
|
}
|
|
|
|
function wish_hostname_end() {
|
|
return 0
|
|
}
|
|
|
|
function wish_hostname_set_colors() {
|
|
WISH_HOSTNAME_FG=${WISH_HOSTNAME_FG:-$WISH_DEFAULT_FG}
|
|
WISH_HOSTNAME_BG=${WISH_HOSTNAME_BG:-$WISH_DEFAULT_BG}
|
|
}
|
|
|
|
function wish_hostname_main() {
|
|
wish_append $WISH_HOSTNAME_BG $WISH_HOSTNAME_FG " \h "
|
|
}
|