From 2d95dfed25f1fde9aa6ac4fa2afd38fecdca6014 Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Sat, 13 Dec 2025 02:08:15 +0000 Subject: [PATCH] Improved cleanup for `start-lab-session` command --- dot_config/nushell/utils.nu | 1 + 1 file changed, 1 insertion(+) diff --git a/dot_config/nushell/utils.nu b/dot_config/nushell/utils.nu index 4bd981a..c71c996 100644 --- a/dot_config/nushell/utils.nu +++ b/dot_config/nushell/utils.nu @@ -55,4 +55,5 @@ export def 'start-lab-session' [ let task_id = pueue add -p ghostty -e zellij attach --index 0 -c $session_name zellij attach --index 0 -c $session_name pueue kill $task_id + pueue rm $task_id }