dotfiles/bin/t

46 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-10-03 16:46:49 +00:00
#!/usr/bin/env bash
# Credit to ThePrimeagen.
2023-12-14 08:58:05 +00:00
set -o nounset
set -o pipefail
if [[ $# -eq 1 ]]; then
selected=$1
else
# Get the session name from fuzzy-finding list of directories and generating a
# tmux-safe version.
items=$(find ~/Code -mindepth 3 -maxdepth 3 -type d ! -name .git)
selected=$(echo "${items}" | sort | 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}"