feat: Updates tmux-sessionator to also open yazi in a 3rd window.

This commit is contained in:
2024-12-15 19:24:48 -05:00
parent ae13738a4d
commit f325d61131

View File

@@ -48,6 +48,8 @@ function create_session() {
tmux new-session -ds "$selected_name" -c "$selected" -n "editor"
tmux send-keys -t editor 'n' Enter
tmux new-window -d -n "terminal" -c "$selected"
tmux new-window -d -n 'files' -c "$selected"
tmux send-keys -t files 'yazi' Enter
}
#################### MAIN ####################