12 lines
137 B
Bash
12 lines
137 B
Bash
ensure_tmux_is_running() {
|
|
if _not_inside_tmux; then
|
|
tat
|
|
fi
|
|
}
|
|
|
|
_not_inside_tmux() {
|
|
[[ -z "$TMUX" ]]
|
|
}
|
|
|
|
ensure_tmux_is_running
|