aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/tmux.bash
blob: 0a3c274336a987877f9236d256d7b15a1c226d34 (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 -d

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