Add beginning of a default TMUX remote session attach/restore.

This commit is contained in:
Scott Wallace 2016-10-04 12:10:00 +01:00
parent 916fe6dfab
commit 5b19f688f4

4
.bashrc_local.sample Normal file
View file

@ -0,0 +1,4 @@
# Launch/restore tmux command sessions
if [ -x $(which tmux) ]; then
tmux has-session && tmux -CC attach || tmux -CC
fi