#!/bin/bash
#
# Copyright (c) Authors: http://www.armbian.com/authors
#
# This file is licensed under the terms of the GNU General Public
# License version 2. This program is licensed "as is" without any
# warranty of any kind, whether express or implied.

# DO NOT EDIT THIS FILE but add config options to /etc/default/armbian-motd
# any changes will be lost on board support package update

THIS_SCRIPT="header"
MOTD_DISABLE=""

for f in $MOTD_DISABLE; do
	[[ $f == $THIS_SCRIPT ]] && exit 0
done

. /etc/os-release

KERNELID=$(uname -r)

TERM=linux toilet -f standard -F metal "Raspberry PI 4"
echo -e "Welcome to \e[0;91m$([[ ${PRETTY_NAME} != *Armbian* ]] && echo "Raspbian ")$(if [[ $ID == debian ]]; then echo ${PRETTY_NAME##*\(} |  sed -e 's/^.*Linux //' | sed "s/\/.*//" | sed 's|)||'; else echo -n ${VERSION_CODENAME^};fi)\x1B[0m with \e[0;91mLinux $KERNELID\x1B[0m\n"
uname -snrvm
