You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
716 B
23 lines
716 B
# ------------------------------------------------------------------------------ |
|
# 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 |
|
if (( $SHLVL == 1 )) && is-true "$AUTO_SCREEN"; then |
|
(( 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 |
|
|
|
|