2012-02-01 05:37:51 +01:00
|
|
|
#
|
2012-02-02 22:34:46 +01:00
|
|
|
# Defines tmux aliases and provides for auto launching it at start-up.
|
2012-02-01 05:37:51 +01:00
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
2012-02-02 22:34:46 +01:00
|
|
|
# Usage:
|
|
|
|
# To auto start it, add the following to zshrc:
|
|
|
|
#
|
|
|
|
# # Auto launch tmux at start-up.
|
|
|
|
# zstyle -t ':omz:plugin:tmux:auto' start 'yes'
|
|
|
|
#
|
2011-09-21 05:15:50 +02:00
|
|
|
|
|
|
|
# Aliases
|
|
|
|
alias ta="tmux attach-session"
|
|
|
|
alias tl="tmux list-sessions"
|
|
|
|
|
2012-02-02 22:34:46 +01:00
|
|
|
# Auto Start
|
|
|
|
if (( $SHLVL == 1 )) && zstyle -t ':omz:plugin:tmux:auto' start; then
|
2012-03-26 15:28:52 +02:00
|
|
|
(( SHLVL += 1 )) && export SHLVL
|
|
|
|
|
2012-02-02 22:34:46 +01:00
|
|
|
session="$(
|
|
|
|
tmux list-sessions 2> /dev/null \
|
|
|
|
| cut -d':' -f1 \
|
|
|
|
| head -1)"
|
|
|
|
|
2011-09-21 05:15:50 +02:00
|
|
|
if [[ -n "$session" ]]; then
|
|
|
|
exec tmux attach-session -t "$session"
|
|
|
|
else
|
2012-03-20 23:27:53 +01:00
|
|
|
exec tmux new-session
|
2011-09-21 05:15:50 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|