Use zstyles for screen and tmux plugin options.
This commit is contained in:
parent
3c13411dd0
commit
42be3d01f0
@ -1,19 +1,31 @@
|
|||||||
#
|
#
|
||||||
# Defines GNU Screen aliases and provides for auto launching it at startup.
|
# Defines GNU Screen aliases and provides for auto launching it at start-up.
|
||||||
#
|
#
|
||||||
# Authors:
|
# Authors:
|
||||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
# 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'
|
||||||
|
#
|
||||||
|
|
||||||
# Aliases
|
# Aliases
|
||||||
alias sl="screen -list"
|
alias sl="screen -list"
|
||||||
alias sn="screen -U -S"
|
alias sn="screen -U -S"
|
||||||
alias sr="screen -a -A -U -D -R"
|
alias sr="screen -a -A -U -D -R"
|
||||||
|
|
||||||
# Auto
|
# Auto Start
|
||||||
if (( $SHLVL == 1 )) && is-true "$AUTO_SCREEN"; then
|
if (( $SHLVL == 1 )) && zstyle -t ':omz:plugin:screen:auto' start; then
|
||||||
(( SHLVL += 1 )) && export SHLVL
|
(( SHLVL += 1 )) && export SHLVL
|
||||||
session="$(screen -list 2> /dev/null | sed '1d;$d' | awk '{print $1}' | head -1)"
|
|
||||||
|
session="$(
|
||||||
|
screen -list 2> /dev/null \
|
||||||
|
| sed '1d;$d' \
|
||||||
|
| awk '{print $1}' \
|
||||||
|
| head -1)"
|
||||||
|
|
||||||
if [[ -n "$session" ]]; then
|
if [[ -n "$session" ]]; then
|
||||||
exec screen -x "$session"
|
exec screen -x "$session"
|
||||||
else
|
else
|
||||||
|
@ -1,18 +1,29 @@
|
|||||||
#
|
#
|
||||||
# Defines tmux aliases and provides for auto launching it at startup.
|
# Defines tmux aliases and provides for auto launching it at start-up.
|
||||||
#
|
#
|
||||||
# Authors:
|
# Authors:
|
||||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||||
#
|
#
|
||||||
|
# Usage:
|
||||||
|
# To auto start it, add the following to zshrc:
|
||||||
|
#
|
||||||
|
# # Auto launch tmux at start-up.
|
||||||
|
# zstyle -t ':omz:plugin:tmux:auto' start 'yes'
|
||||||
|
#
|
||||||
|
|
||||||
# Aliases
|
# Aliases
|
||||||
alias ta="tmux attach-session"
|
alias ta="tmux attach-session"
|
||||||
alias tl="tmux list-sessions"
|
alias tl="tmux list-sessions"
|
||||||
|
|
||||||
# Auto
|
# Auto Start
|
||||||
if (( $SHLVL == 1 )) && is-true "$AUTO_TMUX"; then
|
if (( $SHLVL == 1 )) && zstyle -t ':omz:plugin:tmux:auto' start; then
|
||||||
(( SHLVL += 1 )) && export SHLVL
|
(( SHLVL += 1 )) && export SHLVL
|
||||||
session="$(tmux list-sessions 2> /dev/null | cut -d':' -f1 | head -1)"
|
|
||||||
|
session="$(
|
||||||
|
tmux list-sessions 2> /dev/null \
|
||||||
|
| cut -d':' -f1 \
|
||||||
|
| head -1)"
|
||||||
|
|
||||||
if [[ -n "$session" ]]; then
|
if [[ -n "$session" ]]; then
|
||||||
exec tmux attach-session -t "$session"
|
exec tmux attach-session -t "$session"
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user