dotfiles/.zsh/configs/tmux.zsh

12 lines
137 B
Bash
Raw Normal View History

_not_inside_tmux() {
[[ -z "$TMUX" ]]
}
2020-01-21 07:21:30 +00:00
ensure_tmux_is_running() {
2021-06-10 22:08:32 +00:00
if _not_inside_tmux; then
2020-01-21 07:21:30 +00:00
tat
fi
}
ensure_tmux_is_running