From f56382217faed2b881883d1d970ae1707c7f8500 Mon Sep 17 00:00:00 2001 From: Andrew Davidson Date: Fri, 13 Sep 2024 17:15:05 -0700 Subject: [PATCH] fixing busted mt function, moving tmux command inside function --- bash/.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/.bashrc b/bash/.bashrc index 0d7f1de..fdd66d6 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -260,7 +260,7 @@ function tm { # run mosh and tmux to a specific host function mt { - mosh $1 -- tm + mosh $1 -- tmux new-session -A -s main -x $(tput cols) -y $(tput lines) }