2022-10-03 16:46:49 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-09-17 18:42:11 +00:00
|
|
|
|
2023-12-19 20:26:32 +00:00
|
|
|
# Credit to ThePrimeagen.
|
|
|
|
|
2023-12-14 08:58:05 +00:00
|
|
|
set -o nounset
|
|
|
|
set -o pipefail
|
|
|
|
|
2021-09-17 18:42:11 +00:00
|
|
|
if [[ $# -eq 1 ]]; then
|
|
|
|
selected=$1
|
|
|
|
else
|
2023-12-19 20:26:32 +00:00
|
|
|
# Get the session name from fuzzy-finding list of directories and generating a
|
|
|
|
# tmux-safe version.
|
2024-01-25 18:18:16 +00:00
|
|
|
|
2024-05-04 18:02:32 +00:00
|
|
|
items=$(find ~/Code/* ~/Code ~ ~/Documents \
|
2024-05-04 00:34:16 +00:00
|
|
|
-maxdepth 1 -mindepth 1 -type d \
|
2024-01-25 18:18:16 +00:00
|
|
|
! -name "*-old" \
|
|
|
|
! -name "*.old"
|
|
|
|
)
|
2023-12-19 20:26:32 +00:00
|
|
|
|
2024-05-04 00:34:16 +00:00
|
|
|
selected=$(echo "${items}" | fzf)
|
2021-09-17 18:42:11 +00:00
|
|
|
fi
|
|
|
|
|
2023-12-14 08:58:05 +00:00
|
|
|
if [[ -z "${selected}" ]]; then
|
2021-09-17 18:42:11 +00:00
|
|
|
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
|
2021-09-17 21:35:47 +00:00
|
|
|
|
2023-12-19 10:53:34 +00:00
|
|
|
if tmux has-session -t "${session_name}" 2> /dev/null; then
|
|
|
|
tmux attach -t "${session_name}"
|
2021-09-17 21:35:47 +00:00
|
|
|
fi
|
|
|
|
|
2023-12-19 15:23:08 +00:00
|
|
|
# If a .tmux file exists, run it with the generated session name and path.
|
2024-04-01 19:41:09 +00:00
|
|
|
if [[ -e "${session_path}/.tmuxinator.yaml" ]]; then
|
2024-03-30 22:15:32 +00:00
|
|
|
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
|
2024-03-26 20:45:00 +00:00
|
|
|
elif [[ -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
|
2021-09-17 18:42:11 +00:00
|
|
|
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}"
|