1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-01 18:40:27 +00:00

Fixed GNU Screen and tmux configuration file detection.

This commit is contained in:
Sorin Ionescu 2011-07-14 17:17:34 -04:00
parent 0ccc0c3fe6
commit 571aa8c8e1

View File

@ -82,19 +82,16 @@ fi
# Terminal Multiplexer # Terminal Multiplexer
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
local screenrc tmuxconf if [[ "$TERM" == *256color* ]]; then
if [[ "$TERM" == 'xterm-color' ]]; then
if [[ -e "$HOME/.screenrc" ]]; then
screenrc="-c '$HOME/.screenrc'"
tmuxconf="-f '$HOME/.tmux.conf'"
fi
fi
if [[ "$TERM" == 'xterm-256color' ]]; then
if [[ -e "$HOME/.screenrc256" ]]; then if [[ -e "$HOME/.screenrc256" ]]; then
screenrc="-c '$HOME/.screenrc256'" screenrc="-c '$HOME/.screenrc256'"
tmuxconf="-f '$HOME/.tmux256.conf'" tmuxconf="-f '$HOME/.tmux256.conf'"
fi fi
else
if [[ -e "$HOME/.screenrc" ]]; then
screenrc="-c '$HOME/.screenrc'"
tmuxconf="-f '$HOME/.tmux.conf'"
fi
fi fi
alias screen="screen $screenrc" alias screen="screen $screenrc"
@ -102,6 +99,8 @@ alias sl="screen $screenrc -list"
alias sr="screen $screenrc -a -A -U -D -R" alias sr="screen $screenrc -a -A -U -D -R"
alias S="screen $screenrc -U -S" alias S="screen $screenrc -U -S"
alias tmux="tmux $tmuxconf" if (( ${+commands[tmux]} )); then
alias tls="tmux list-sessions" alias tmux="tmux $tmuxconf"
alias tls="tmux list-sessions"
fi