aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/tmux.bash
blob: e7aaa826c14caee94ad0c19fbbeb921f72947872 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Bail if no tmux(1)
if ! hash tmux 2>/dev/null; then
    return
fi

# Attach to existing tmux session rather than create a new one if possible
tmux() {

    # If sessions exist, default the arguments to the attach-session command
    if command tmux has-session 2>/dev/null; then
        command tmux "${@:-attach-session}"

    # Otherwise, just call tmux directly with the given arguments
    else
        command tmux "$@"
    fi
}