From 11b5fae23de6338fc64acf6f6493f625a8b020f7 Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Tue, 30 Dec 2025 21:25:03 -0500 Subject: [PATCH] Remove terminal banner from alias.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The banner was displaying every time a new shell was opened, which was intrusive. Now the aliases load silently. Commands are still available (VideoTools, VideoToolsRebuild, VideoToolsClean) but without the banner on every terminal load. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- scripts/alias.sh | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/scripts/alias.sh b/scripts/alias.sh index 3dcce35..8163b24 100755 --- a/scripts/alias.sh +++ b/scripts/alias.sh @@ -22,15 +22,5 @@ VideoToolsClean() { echo "Clean complete" } -echo "════════════════════════════════════════════════════════════════" -echo "VideoTools Commands Available" -echo "════════════════════════════════════════════════════════════════" -echo "" -echo "Commands:" -echo " VideoTools - Run VideoTools (auto-builds if needed)" -echo " VideoToolsRebuild - Force rebuild of VideoTools" -echo " VideoToolsClean - Clean build artifacts and cache" -echo "" -echo "To make these permanent, add this line to your ~/.bashrc or ~/.zshrc:" -echo " source $PROJECT_ROOT/scripts/alias.sh" -echo "" +# VideoTools commands loaded silently +# Available commands: VideoTools, VideoToolsRebuild, VideoToolsClean