This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/plugins/screen/init.zsh

24 lines
716 B
Bash
Raw Normal View History

2011-09-20 23:15:50 -04:00
# ------------------------------------------------------------------------------
# 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
2012-01-20 22:03:17 -05:00
if (( $SHLVL == 1 )) && is-true "$AUTO_SCREEN"; then
2011-09-20 23:15:50 -04:00
(( 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