# ~/.bashrc - Football secure access system # This script automatically starts IceWM and Remmina # Start X with IceWM on login if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" = "1" ]; then exec startx fi # Security aliases alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' # PATH additions export PATH=$PATH:/usr/local/bin # Display security notice on login echo "" echo "================================================================" echo " FOOTBALL - SECURE ACCESS SYSTEM" echo "================================================================" echo " Remote access to this system is DISABLED." echo " Local console access only." echo " System is automatically starting IceWM + Remmina." echo "================================================================" echo ""