From 6afa5539c79ec7552174a035692ca9c45e3744e4 Mon Sep 17 00:00:00 2001 From: Arimil Date: Wed, 13 Aug 2025 16:55:29 -0400 Subject: [PATCH] terminal-helper: add support for ghostty --- src/terminal-helper | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/terminal-helper b/src/terminal-helper index fcc4f77..ad70a2d 100755 --- a/src/terminal-helper +++ b/src/terminal-helper @@ -56,8 +56,9 @@ declare -A terminals=( ["st"]="st $cmd" ["foot"]="foot $cmd" ["rio"]="rio -e $cmd" + ["ghostty"]="ghostty -e $cmd" ) -declare -a term_order=("alacritty" "kitty" "ptyxis" "konsole" "kgx" "gnome-terminal" "xfce4-terminal" "lxterminal" "xterm" "st" "foot" "rio") +declare -a term_order=("alacritty" "kitty" "ptyxis" "konsole" "kgx" "gnome-terminal" "xfce4-terminal" "lxterminal" "xterm" "st" "foot" "rio" "ghostty") if [ -z "$terminal" ] || ! command -v "$terminal" &> /dev/null; then for entry in ${term_order[@]}; do