disable agent tracker in left tmux status

This commit is contained in:
David Chen 2025-12-21 15:36:21 -08:00
parent 3602e03a67
commit 9188c9fdd1
4 changed files with 32 additions and 168 deletions

View file

@ -86,6 +86,7 @@ def command_switch(index_str: str) -> None:
if index > len(sessions):
return
run_tmux(["switch-client", "-t", sessions[index - 1]["id"]], check=False)
run_tmux(["refresh-client", "-S"], check=False)
def command_rename(label: str) -> None: