dotfiles/bin/t

40 lines
1,012 B
Plaintext
Raw Normal View History

2022-10-03 16:46:49 +00:00
#!/usr/bin/env bash
2023-12-14 08:58:05 +00:00
set -o nounset
set -o pipefail
if [[ $# -eq 1 ]]; then
selected=$1
else
2023-12-08 07:18:00 +00:00
selected=$(zoxide query -l | grep -v /tmp | grep -v "^${HOME}/\." | grep -v "^${HOME}/Code$" | grep -v "/main$" | fzf --reverse)
fi
2023-12-14 08:58:05 +00:00
if [[ -z "${selected}" ]]; then
exit 0
fi
2023-12-14 08:58:05 +00:00
session_name=$(basename "${selected}" | sed 's/\./-/g')
2023-12-19 10:53:34 +00:00
session_path="${selected}"
2023-12-19 15:23:08 +00:00
# Git worktrees.
2023-12-19 10:53:34 +00:00
if [[ -e "${selected}/main" ]]; then
session_path="${selected}/main"
fi
2023-12-19 10:53:34 +00:00
if tmux has-session -t "${session_name}" 2> /dev/null; then
tmux attach -t "${session_name}"
fi
2023-12-19 15:23:08 +00:00
# If a .tmux file exists, run it with the generated session name and path.
2023-12-19 10:53:34 +00:00
if [[ -e "${session_path}/.tmux" ]]; then
2023-12-19 15:23:08 +00:00
"${session_path}/.tmux" "${session_name}" "${session_path}"
exit
elif [[ -e "${session_path}/.ignored/.tmux" ]]; then
"${session_path}/.ignored/.tmux" "${session_name}" "${session_path}"
2023-12-14 08:58:05 +00:00
exit
fi
2023-12-19 15:23:08 +00:00
tmux new-session -d -s "${session_name}" -c "${session_path}"
2023-12-14 08:58:05 +00:00
2023-12-19 15:23:08 +00:00
tmux switch-client -t "${session_name}" || tmux attach -t "${session_name}"