From 2ea52326bc9dafd682f8d0dba38f2ff334dc3242 Mon Sep 17 00:00:00 2001 From: noctuid Date: Sat, 10 Mar 2018 17:06:56 -0500 Subject: [PATCH] Add -s support for LXTerminal Also list related desktop environments for terminals. --- README.org | 12 +++++++----- tdrop | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.org b/README.org index db18547..e7be125 100644 --- a/README.org +++ b/README.org @@ -164,18 +164,20 @@ These terminals have been tested with tdrop and support the =-s= and =-a= flags - Alacritty - cool-retro-term -- Gnome-terminal +- GNOME terminal (GNOME, Unity, Cinnamon, etc.) - [[https://github.com/kovidgoyal/kitty][kitty]] -- Konsole -- QTerminal +- Konsole (KDE) +- LXTerminal (LXDE) +- MATE terminal (MATE) +- QTerminal (LXDE) - Roxterm - Sakura -- Terminology +- Terminology (Enlightenment) - Termite - Tilix (previously terminix) - tinyterm/minyterm - URxvt (including urxvtd) -- Xfce4-terminal +- Xfce4-terminal (XFCE) - xiate - XTerm diff --git a/tdrop b/tdrop index 882bc09..a48b324 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|cool-retro-term$) ]]; then + if [[ $program =~ ^(urxvt|alacritty|xiatec|st|lxterminal|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"