From 6e6b94af2b9df80034bf24b8643db0a6c540fbc3 Mon Sep 17 00:00:00 2001 From: gm Date: Sat, 18 Jul 2026 02:11:23 +0900 Subject: [PATCH] Increase startup SSH auto-connect delay from 0.5s to 2s Gives ssh_domains more time to finish registering in the mux before the du5t tab spawn is attempted. Co-Authored-By: Claude Sonnet 5 --- wezterm.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wezterm.lua b/wezterm.lua index 631cceb..9625262 100644 --- a/wezterm.lua +++ b/wezterm.lua @@ -759,7 +759,7 @@ wezterm.on("gui-startup", function(cmd) list_system_fonts() -- 폰트 목록을 미리 캐싱해서, 나중에 폰트 설정 메뉴에서 조회 지연으로 화면이 깜빡이지 않게 함 show_main_menu(gui_window, pane) - wezterm.time.call_after(0.5, function() + wezterm.time.call_after(2, function() gui_window:perform_action(act.SpawnTab({ DomainName = "du5t" }), pane) end) end)