Add support for Trinity's konsole (TDE)

Fixes #58.
performance
Fox Kiester 5 years ago
parent 60435d240f
commit d74150f01f
No known key found for this signature in database
GPG Key ID: 316E205D6017DBFF

@ -609,7 +609,9 @@ program_start() {
tmuxinator start $session_name || \
tmux new-session -s $session_name'"
# note: st will work with or without the -e flag (like kitty)
if [[ $program =~ ^(urxvt|alacritty|xiatec|st|lxterminal|qterminal|cool-retro-term|lilyterm$) ]]; then
# note: regular console works with or without quotes, but trinity's
# konsole only works without quotes
if [[ $program =~ ^(urxvt|alacritty|xiatec|st|lxterminal|qterminal|cool-retro-term|lilyterm|konsole$) ]]; then
program_command="$program_command -e bash -c $tmux_command"
elif [[ $program == kitty ]]; then
program_command="$program_command bash -c $tmux_command"

Loading…
Cancel
Save