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/modules/screen/init.zsh

28 lines
551 B
Bash
Raw Normal View History

2012-01-31 23:37:51 -05:00
#
# Defines GNU Screen aliases and provides for auto launching it at start-up.
2012-01-31 23:37:51 -05:00
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-09-20 23:15:50 -04:00
# Aliases
alias sl="screen -list"
alias sn="screen -U -S"
alias sr="screen -a -A -U -D -R"
# Auto Start
2012-03-28 12:41:39 -04:00
if [[ -z "$STY" ]] && zstyle -t ':omz:module:screen' auto-start; then
session="$(
screen -list 2> /dev/null \
| sed '1d;$d' \
| awk '{print $1}' \
| head -1)"
2011-09-20 23:15:50 -04:00
if [[ -n "$session" ]]; then
exec screen -x "$session"
else
exec screen -a -A -U -D -R -m "$SHELL" -l
fi
fi