Don't automatically run tmuxinator when starting
...a session
This commit is contained in:
parent
7b9e5c6cfc
commit
c95a5105c9
15
bin/t
15
bin/t
|
@ -36,21 +36,6 @@ if tmux has-session -t "${session_name}" 2> /dev/null; then
|
||||||
tmux attach -t "${session_name}"
|
tmux attach -t "${session_name}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If a .tmux file exists, run it with the generated session name and path.
|
|
||||||
if [[ -e "${session_path}/.tmuxinator.yaml" ]]; then
|
|
||||||
cd "${session_path}" && tmuxinator start
|
|
||||||
exit
|
|
||||||
elif [[ -e "${session_path}/.ignored/.tmuxinator.yaml" ]]; then
|
|
||||||
cd "${session_path}" && tmuxinator start --project-config "${session_path}/.ignored/.tmuxinator.yaml"
|
|
||||||
exit
|
|
||||||
elif [[ -e "${session_path}/.tmux" ]]; then
|
|
||||||
"${session_path}/.tmux" "${session_name}" "${session_path}"
|
|
||||||
exit
|
|
||||||
elif [[ -e "${session_path}/.ignored/.tmux" ]]; then
|
|
||||||
"${session_path}/.ignored/.tmux" "${session_name}" "${session_path}"
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
tmux new-session -d -s "${session_name}" -c "${session_path}"
|
tmux new-session -d -s "${session_name}" -c "${session_path}"
|
||||||
|
|
||||||
tmux switch-client -t "${session_name}" || tmux attach -t "${session_name}"
|
tmux switch-client -t "${session_name}" || tmux attach -t "${session_name}"
|
||||||
|
|
Loading…
Reference in a new issue