From 34f90fc2de459f9019802efa03a08828be02739b Mon Sep 17 00:00:00 2001 From: Botspot Date: Sat, 20 Feb 2021 19:44:42 -0600 Subject: [PATCH] terminal-run add konsole support --- etc/terminal-run | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etc/terminal-run b/etc/terminal-run index 758b0c5..65508b2 100755 --- a/etc/terminal-run +++ b/etc/terminal-run @@ -11,6 +11,8 @@ elif [ -f /usr/bin/mate-terminal ];then mate-terminal --title="$2" -e "bash -c "\""$1"\""" elif [ -f /usr/bin/xterm ];then xterm -T "$2" -e bash -c "$1" +elif [ -f /usr/bin/konsole ];then + konsole -p tabtitle="$2" -e bash <(echo "$1") elif [ -f /usr/bin/x-terminal-emulator ];then $(readlink -f /usr/bin/x-terminal-emulator) -e bash -c "$1" else