From 973411e3b51bbe72cf030da373ba3f22e0c51646 Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Sun, 15 Mar 2026 07:56:07 -0400 Subject: [PATCH] fix: auto-attach on first run - exec tmux attach after creating session (was missing on fresh create) - removed echo banners that flashed before attach --- tmux/dev-session.sh | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/tmux/dev-session.sh b/tmux/dev-session.sh index 1f3b84a..d2786e5 100755 --- a/tmux/dev-session.sh +++ b/tmux/dev-session.sh @@ -52,16 +52,5 @@ tmux send-keys -t "$SESSION:2.1" \ # Focus: start on hermes window tmux select-window -t "$SESSION:1" -echo "" -echo " Dev session ready." -echo "" -echo " Window 1 — hermes : Hermes TUI" -echo " Window 2 — timmy-loop:" -echo " ┌──────────────────┬──────────────────┐" -echo " │ Loop (pane 0) │ Status (pane 2) │" -echo " ├──────────────────┤ │" -echo " │ Chat (pane 1) │ │" -echo " └──────────────────┴──────────────────┘" -echo "" -echo " Attach: tmux attach -t dev" -echo "" +# Attach to the session we just created +exec tmux attach -t "$SESSION"