2020-02-02 22:44:23 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
exist() { type "$1" >/dev/null 2>&1; }
|
|
|
|
|
2020-02-06 19:30:35 +00:00
|
|
|
# alias tmux to follow xdg-specification
|
|
|
|
# shellcheck disable=2139
|
|
|
|
alias tmux="tmux -f ${XDG_CONFIG_HOME:-$HOME/.config}/tmux/tmux.conf"
|
|
|
|
|
2020-02-02 22:44:23 +00:00
|
|
|
# fzf
|
|
|
|
if exist fzf; then
|
2021-04-04 18:52:52 +00:00
|
|
|
# fzf select a tmux session to connect to, with pane preview
|
|
|
|
alias tm='_fzf_tmux_attach_start_session'
|
|
|
|
alias tl=tm
|
2020-07-23 13:29:05 +00:00
|
|
|
else
|
2021-04-04 18:52:52 +00:00
|
|
|
alias tm='tmux_attach_start'
|
|
|
|
# show a list of running tmux sessions
|
|
|
|
alias tl='tmux list-sessions -F "#{session_name}" 2>/dev/null '
|
2020-02-02 22:44:23 +00:00
|
|
|
fi
|
|
|
|
|
2020-07-23 13:29:05 +00:00
|
|
|
_fzf_tmux_list_sessions() {
|
2021-04-04 18:52:52 +00:00
|
|
|
tmux list-sessions -F "#{session_name}" 2>/dev/null | fzf \
|
|
|
|
--layout=reverse \
|
|
|
|
--height=50% \
|
|
|
|
--border \
|
|
|
|
--prompt="Session> " \
|
|
|
|
--preview="tmux_pane_tree {}" \
|
|
|
|
--preview-window=right:80% \
|
|
|
|
--print-query
|
2020-07-23 13:29:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_fzf_tmux_attach_start_session() {
|
2021-04-04 18:52:52 +00:00
|
|
|
if [ -z "$1" ]; then
|
|
|
|
result=$(_fzf_tmux_list_sessions)
|
|
|
|
case "$?" in
|
|
|
|
0)
|
|
|
|
# found a session, attaching
|
|
|
|
tmux_attach_start "$(echo "$result" | tail --lines=1)"
|
|
|
|
;;
|
|
|
|
1)
|
|
|
|
# did not find a session, creating
|
|
|
|
result=$(echo "$result" | head --lines=1)
|
|
|
|
# if . was only thing entered, create one for current dir
|
|
|
|
if [ "$result" = "." ]; then
|
|
|
|
tmux_attach_start
|
|
|
|
# create for query name
|
|
|
|
else
|
|
|
|
tmux_attach_start "$result"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
tmux_attach_start "$1"
|
|
|
|
fi
|
2020-02-02 22:44:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unset choice
|
|
|
|
unset -f exist
|