From 267d52e4ce7ad7c756c6cdac8913af3c9b1afa54 Mon Sep 17 00:00:00 2001 From: Florian Schroedl Date: Sat, 18 Apr 2026 16:13:14 +0200 Subject: [PATCH] feat: add `bb attach` task for attaching to dev tmux session --- bb.edn | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bb.edn b/bb.edn index 9b9157d..00e83b1 100644 --- a/bb.edn +++ b/bb.edn @@ -30,6 +30,9 @@ (println " Server: http://localhost:8090/sync") (println " Attach: tmux attach -t atomsync-dev"))} + attach {:doc "Attach to the dev tmux session" + :task (shell "tmux attach -t atomsync-dev")} + dev:stop {:doc "Stop the dev tmux session" :task (shell "tmux kill-session -t atomsync-dev")}