mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
34 lines
1012 B
Bash
Executable File
34 lines
1012 B
Bash
Executable File
#!/bin/sh
|
|
printf "\n"
|
|
printf "Welcome to\n"
|
|
cat << "ASCII"
|
|
|
|
███████
|
|
█ █ █
|
|
█ █ █ █
|
|
█ █ █ █
|
|
█ █ █ █
|
|
█ █ █ █
|
|
█ █
|
|
███████
|
|
|
|
_____ __ ___ __ __
|
|
(_ | /\ |__) | / \(_
|
|
__) | / \| \ | \__/__)
|
|
ASCII
|
|
printf " $(start-cli --version | sed 's/StartOS CLI /v/g')\n\n"
|
|
printf " %s (%s %s)\n" "$(uname -o)" "$(uname -r)" "$(uname -m)"
|
|
printf " Git Hash: $(start-cli git-info)"
|
|
if [ -n "$(cat /usr/lib/startos/ENVIRONMENT.txt)" ]; then
|
|
printf " ~ $(cat /usr/lib/startos/ENVIRONMENT.txt)\n"
|
|
else
|
|
printf "\n"
|
|
fi
|
|
|
|
printf "\n"
|
|
printf " * Documentation: https://docs.start9.com\n"
|
|
printf " * Management: https://%s.local\n" "$(hostname)"
|
|
printf " * Support: https://start9.com/contact\n"
|
|
printf " * License: MIT\n"
|
|
printf "\n"
|