only add -l when default_shell is bash

pull/327/head
Helmut K. C. Tessarek 2019-12-05 18:50:41 -05:00 committed by Bruno Sutic
parent c66b791fff
commit 1160c1da71
No known key found for this signature in database
GPG Key ID: CAFA7B1B2914ED81
1 changed files with 5 additions and 1 deletions

View File

@ -100,7 +100,11 @@ tmux_socket() {
# tmux server each time.
cache_tmux_default_command() {
local default_shell="$(get_tmux_option "default-shell" "")"
export TMUX_DEFAULT_COMMAND="$(get_tmux_option "default-command" "-l $default_shell")"
local opt=""
if [ "$(basename "$default_shell")" == "bash" ]; then
opt="-l "
fi
export TMUX_DEFAULT_COMMAND="$(get_tmux_option "default-command" "$opt$default_shell")"
}
tmux_default_command() {