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

43 lines
873 B
Bash
Raw Permalink 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>
# Georges Discry <georges@discry.be>
2012-01-31 23:37:51 -05:00
#
2011-09-20 23:15:50 -04:00
2012-07-23 15:00:44 -04:00
# Return if requirements are not found.
if (( ! $+commands[screen] )); then
return 1
fi
2012-08-04 14:48:32 -04:00
#
# Auto Start
2012-08-04 14:48:32 -04:00
#
2014-02-26 17:19:19 -05:00
if [[ -z "$STY" && -z "$EMACS" && -z "$VIM" ]] && ( \
( [[ -n "$SSH_TTY" ]] && zstyle -t ':prezto:module:screen:auto-start' remote ) ||
( [[ -z "$SSH_TTY" ]] && zstyle -t ':prezto:module:screen:auto-start' local ) \
); 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
2012-08-04 14:48:32 -04:00
#
2012-07-03 13:50:25 -04:00
# Aliases
2012-08-04 14:48:32 -04:00
#
2012-08-14 22:15:45 -04:00
alias scr='screen'
alias scrl='screen -list'
alias scrn='screen -U -S'
alias scrr='screen -a -A -U -D -R'