mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-07-31 11:39:25 +00:00
Added screen and tmux plugins.
This commit is contained in:
23
plugins/screen/screen.plugin.zsh
Normal file
23
plugins/screen/screen.plugin.zsh
Normal file
@ -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
|
||||
|
Reference in New Issue
Block a user