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.
27 lines
551 B
27 lines
551 B
# |
|
# Defines GNU Screen aliases and provides for auto launching it at start-up. |
|
# |
|
# Authors: |
|
# Sorin Ionescu <sorin.ionescu@gmail.com> |
|
# |
|
|
|
# Aliases |
|
alias sl="screen -list" |
|
alias sn="screen -U -S" |
|
alias sr="screen -a -A -U -D -R" |
|
|
|
# Auto Start |
|
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)" |
|
|
|
if [[ -n "$session" ]]; then |
|
exec screen -x "$session" |
|
else |
|
exec screen -a -A -U -D -R -m "$SHELL" -l |
|
fi |
|
fi |
|
|
|
|