5 lines
124 B
Plaintext
5 lines
124 B
Plaintext
|
# Launch/restore tmux command sessions
|
||
|
if [ -x $(which tmux) ]; then
|
||
|
tmux has-session && tmux -CC attach || tmux -CC
|
||
|
fi
|