nix/modules/home-manager/scripts/common/bin/tmux-session-dir
2023-10-05 13:43:28 -05:00

10 lines
275 B
Bash
Executable file

#!/usr/bin/env sh
# if inside a session, use the current session
# if not, a session must be specified after the dir
d="${1}"
[ -z "$d" ] && d="#{pane_current_path}"
target_session="${2}"
[ -n "$TMUX" ] && target_session="."
tmux attach-session -t "$target_session" -c "$d"