From d74150f01f8d12337cb1b91ec462b05c2f987ef3 Mon Sep 17 00:00:00 2001 From: Fox Kiester Date: Sun, 24 Nov 2019 10:04:30 -0500 Subject: [PATCH] Add support for Trinity's konsole (TDE) Fixes #58. --- tdrop | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tdrop b/tdrop index d7d8bca..8ad3a82 100755 --- a/tdrop +++ b/tdrop @@ -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"