From 7ca71cd4b939784691a49257ea064614b28cc48c Mon Sep 17 00:00:00 2001 From: Botspot Date: Thu, 18 Mar 2021 22:45:23 -0500 Subject: [PATCH] terminal-run add gnome-terminal and terminator --- etc/terminal-run | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/etc/terminal-run b/etc/terminal-run index e815bba..7026d8c 100755 --- a/etc/terminal-run +++ b/etc/terminal-run @@ -14,6 +14,10 @@ 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/terminator ];then + terminator -T "$2" -x bash -c "$1" +elif [ -f /usr/bin/gnome-terminal ];then + gnome-terminal --title "$2" -x bash -c "$1" elif [ -f /usr/bin/x-terminal-emulator ];then $(readlink -f /usr/bin/x-terminal-emulator) -e bash -c "$1" else