From ccda961a8514b03b1351924973fdcd9b54bb3538 Mon Sep 17 00:00:00 2001 From: Shogu Date: Mon, 27 Apr 2026 19:11:18 +0200 Subject: [PATCH] Add support for 'ptyxis' terminal in helper script Add Ptyxis as available terminal --- src/scripts/terminal-helper | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/scripts/terminal-helper b/src/scripts/terminal-helper index 59296ab..27f3e93 100755 --- a/src/scripts/terminal-helper +++ b/src/scripts/terminal-helper @@ -61,6 +61,7 @@ declare -A terminals=( ["terminator"]="terminator -x $cmd" ["xfce4-terminal"]="xfce4-terminal --disable-server --command '$cmd'" ["xterm"]="xterm -e $cmd" + ["ptyxis"]="ptyxis -e $cmd" ) declare -a term_order=( "alacritty" @@ -77,6 +78,8 @@ declare -a term_order=( "st" "foot" "terminator" + "ptyxis" + ) if [ -z "$terminal" ] || ! command -v "$terminal" &>/dev/null; then