From 040c44fec6ac929f5a9497f2ce97fdab9c1b3bc6 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Mon, 5 Jan 2026 19:32:20 -0500 Subject: [PATCH] Remove duplicate MOTD, source bashrc after install MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - System MOTD already shows banner, bashrc one was redundant - Source bashrc immediately after copying for instant effect 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- rpi/setup.sh | 1 + rpi/skel/.bashrc | 15 --------------- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/rpi/setup.sh b/rpi/setup.sh index 72bea28..f2be1bd 100755 --- a/rpi/setup.sh +++ b/rpi/setup.sh @@ -309,6 +309,7 @@ echo " Added stegasoo to PATH" if [ -f "$INSTALL_DIR/rpi/skel/.bashrc" ]; then if ! grep -q "Stegasoo Pi" ~/.bashrc 2>/dev/null; then cp "$INSTALL_DIR/rpi/skel/.bashrc" ~/.bashrc + source ~/.bashrc 2>/dev/null || true echo " Installed custom .bashrc" else echo " Custom .bashrc already installed" diff --git a/rpi/skel/.bashrc b/rpi/skel/.bashrc index 78eeaea..b833534 100644 --- a/rpi/skel/.bashrc +++ b/rpi/skel/.bashrc @@ -212,18 +212,3 @@ fi export PATH="$HOME/.local/bin:$PATH" -# ============================================================================ -# Welcome Message (first login only) -# ============================================================================ - -if [ -z "$STEGASOO_WELCOMED" ]; then - export STEGASOO_WELCOMED=1 - echo "" - echo -e "\e[38;5;82m ___ _____ ___ ___ _ ___ ___ ___\e[0m" - echo -e "\e[38;5;82m / __||_ _|| __| / __| /_\\ / __| / _ \\ / _ \\\e[0m" - echo -e "\e[38;5;82m \\__ \\ | | | _| | (_ | / _ \\ \\__ \\ | (_) || (_) |\e[0m" - echo -e "\e[38;5;82m |___/ |_| |___| \\___//_/ \\_\\|___/ \\___/ \\___/\e[0m" - echo "" - echo -e "\e[38;5;245mType 'sysinfo' for system status, 'steglog' for logs\e[0m" - echo "" -fi