aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/tmux.bash
blob: 1a1607906fae1cdcb05b2b80ee8a8c1543c66216 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Attach to existing tmux session rather than create a new one if possible
tmux() {

    # If any arguments to function, just run tmux as normal with them
    if (($# > 0)); then
        command tmux "$@"

    # If no arguments, attempt to attach to an existing session; if that fails,
    # run the tmux binary with no arguments, which by default creates a new
    # session
    elif ! command tmux attach -d 2>/dev/null; then
        command tmux
    fi
}