1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 12:20:27 +00:00
prezto/modules/screen/init.zsh

28 lines
551 B
Bash
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Defines GNU Screen aliases and provides for auto launching it at start-up.
2012-02-01 04:37:51 +00:00
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-09-21 03:15:50 +00:00
# Aliases
alias sl="screen -list"
alias sn="screen -U -S"
alias sr="screen -a -A -U -D -R"
# Auto Start
2012-03-28 16:41:39 +00: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-21 03:15:50 +00:00
if [[ -n "$session" ]]; then
exec screen -x "$session"
else
exec screen -a -A -U -D -R -m "$SHELL" -l
fi
fi