mirror of
https://tildegit.org/hyperreal/dotfiles-hyperreal.git
synced 2026-03-09 12:58:12 +01:00
10 lines
141 B
Bash
10 lines
141 B
Bash
if pgrep tmux >/dev/null; then
|
|
if [ -z "$TMUX" ]; then
|
|
tmux attach
|
|
fi
|
|
else
|
|
tmux
|
|
fi
|
|
|
|
# vim: sw=4 ts=4 sts=4 ai et ft=zsh
|
|
|