From 14a935ca247d6b24e0c10a23e36d63cd6fc84580 Mon Sep 17 00:00:00 2001 From: noctuid Date: Sat, 10 Mar 2018 16:45:20 -0500 Subject: [PATCH] Add support for -s for cool-retro-term --- README.org | 1 + tdrop | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index dccd941..0a59f3f 100644 --- a/README.org +++ b/README.org @@ -177,6 +177,7 @@ These terminals have been tested with tdrop and support the =-s= and =-a= flags - Alacritty - xiate - [[https://github.com/kovidgoyal/kitty][kitty]] +- cool-retro-term If your terminal doesn't work with tdrop, feel free to make an issue. Please follow the steps in the [[#troubleshooting][Troubleshooting]] section. diff --git a/tdrop b/tdrop index db6453c..882bc09 100755 --- a/tdrop +++ b/tdrop @@ -571,7 +571,7 @@ 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|qterminal$) ]]; then + if [[ $program =~ ^(urxvt|alacritty|xiatec|st|qterminal|cool-retro-term$) ]]; then program_command="$program_command -e bash -c $tmux_command" elif [[ $program == kitty ]]; then program_command="$program_command bash -c $tmux_command"