dotfiles/zsh/.zsh/configs/tmux.zsh
2021-07-28 12:57:53 +01:00

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