prezto/plugins/screen/init.zsh

34 lines
712 B
Bash
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
# Defines GNU Screen aliases and provides for auto launching it at start-up.
2012-02-01 05:37:51 +01:00
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Usage:
# To auto start it, add the following to zshrc:
#
# # Auto launch GNU Screen at start-up.
# zstyle -t ':omz:plugin:screen:auto' start 'yes'
#
2011-09-21 05:15:50 +02:00
# Aliases
alias sl="screen -list"
alias sn="screen -U -S"
alias sr="screen -a -A -U -D -R"
# Auto Start
2012-03-26 19:31:36 +02:00
if [[ -z "$STY" ]] && zstyle -t ':omz:plugin:screen:auto' start; then
session="$(
screen -list 2> /dev/null \
| sed '1d;$d' \
| awk '{print $1}' \
| head -1)"
2011-09-21 05:15:50 +02:00
if [[ -n "$session" ]]; then
exec screen -x "$session"
else
exec screen -a -A -U -D -R -m "$SHELL" -l
fi
fi