armbian-build/scripts/check_first_login.sh
2016-01-20 09:12:38 +01:00

10 lines
274 B
Bash

#!/bin/bash
# only do this for interactive shells
if [ "$-" != "${-#*i}" ]; then
if [ -f "$HOME/.not_logged_in_yet" ]; then
echo -e "\e[0;31mThank you for choosing Armbian. Support: www.armbian.com\x1B[0m"
echo ""
rm -f "$HOME/.not_logged_in_yet"
fi
fi