9 lines
180 B
Text
9 lines
180 B
Text
|
#!/bin/sh
|
||
|
|
||
|
show_welcome_header() {
|
||
|
[ "$SC_SKIP_WELCOME_HEADER" = "1" ] && return 0
|
||
|
cat $SC_ASSETS/saluco-header.txt
|
||
|
echo "Welcome, $(whoami) ($(id -u))!"
|
||
|
echo ""
|
||
|
}
|