parent
225ea89e74
commit
8619dd28bc
@ -0,0 +1,23 @@
|
|||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# FILE: screen.plugin.zsh
|
||||||
|
# DESCRIPTION: oh-my-zsh plugin file.
|
||||||
|
# AUTHOR: Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||||
|
# VERSION: 1.0.0
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Aliases
|
||||||
|
alias sl="screen -list"
|
||||||
|
alias sn="screen -U -S"
|
||||||
|
alias sr="screen -a -A -U -D -R"
|
||||||
|
|
||||||
|
# Auto
|
||||||
|
if (( $SHLVL == 1 )) && ! check-bool "$DISABLE_AUTO_SCREEN"; then
|
||||||
|
(( SHLVL += 1 )) && export SHLVL
|
||||||
|
session="$(screen -list 2> /dev/null | sed '1d;$d' | awk '{print $1}' | head -1)"
|
||||||
|
if [[ -n "$session" ]]; then
|
||||||
|
exec screen -x "$session"
|
||||||
|
else
|
||||||
|
exec screen -a -A -U -D -R -m "$SHELL" -l
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
@ -0,0 +1,22 @@
|
|||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# FILE: tmux.plugin.zsh
|
||||||
|
# DESCRIPTION: oh-my-zsh plugin file.
|
||||||
|
# AUTHOR: Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||||
|
# VERSION: 1.0.0
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Aliases
|
||||||
|
alias ta="tmux attach-session"
|
||||||
|
alias tl="tmux list-sessions"
|
||||||
|
|
||||||
|
# Auto
|
||||||
|
if (( $SHLVL == 1 )) && ! check-bool "$DISABLE_AUTO_TMUX"; then
|
||||||
|
(( SHLVL += 1 )) && export SHLVL
|
||||||
|
session="$(tmux list-sessions 2> /dev/null | cut -d':' -f1 | head -1)"
|
||||||
|
if [[ -n "$session" ]]; then
|
||||||
|
exec tmux attach-session -t "$session"
|
||||||
|
else
|
||||||
|
exec tmux new-session "$SHELL -l"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in new issue