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.
28 lines
551 B
28 lines
551 B
13 years ago
|
#
|
||
13 years ago
|
# Defines GNU Screen aliases and provides for auto launching it at start-up.
|
||
13 years ago
|
#
|
||
|
# Authors:
|
||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
|
#
|
||
13 years ago
|
|
||
|
# Aliases
|
||
|
alias sl="screen -list"
|
||
|
alias sn="screen -U -S"
|
||
|
alias sr="screen -a -A -U -D -R"
|
||
|
|
||
13 years ago
|
# Auto Start
|
||
13 years ago
|
if [[ -z "$STY" ]] && zstyle -t ':omz:module:screen' auto-start; then
|
||
13 years ago
|
session="$(
|
||
|
screen -list 2> /dev/null \
|
||
|
| sed '1d;$d' \
|
||
|
| awk '{print $1}' \
|
||
|
| head -1)"
|
||
|
|
||
13 years ago
|
if [[ -n "$session" ]]; then
|
||
|
exec screen -x "$session"
|
||
|
else
|
||
|
exec screen -a -A -U -D -R -m "$SHELL" -l
|
||
|
fi
|
||
|
fi
|
||
|
|