From 39a7a9587581d2eed1ae113df712944ed3136dff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20H=C3=B6rdt?= Date: Tue, 30 Jun 2026 10:23:11 +0200 Subject: [PATCH 1/2] Add ghostty to Mac and Linux terminal --- gitfourchette/exttools/toolpresets.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gitfourchette/exttools/toolpresets.py b/gitfourchette/exttools/toolpresets.py index 236a0acc..786d54e6 100644 --- a/gitfourchette/exttools/toolpresets.py +++ b/gitfourchette/exttools/toolpresets.py @@ -67,6 +67,7 @@ class ToolPresets: "macOS Terminal": "assets:mac/terminal.scpt $COMMAND", "kitty" : "kitty --single-instance $COMMAND", # single instance looks better in dock "WezTerm" : "wezterm start $COMMAND", # 'start' instead of '-e' to reuse app instance + "Ghostty" : "ghostty +new-window -e $COMMAND", } _windowsTerminals = { @@ -84,6 +85,7 @@ class ToolPresets: "Alacritty" : "alacritty -e $COMMAND", "Contour" : "contour $COMMAND", "foot" : "foot $COMMAND", + "Ghostty" : "ghostty -e $COMMAND", "GNOME Terminal": "gnome-terminal -- $COMMAND", "kitty" : "kitty $COMMAND", "Konsole" : "konsole -e $COMMAND", From 97ed98d2df9de01a3b7b3bb53854e4ed089bd666 Mon Sep 17 00:00:00 2001 From: Genfood Date: Mon, 6 Jul 2026 07:53:57 +0200 Subject: [PATCH 2/2] Update gitfourchette/exttools/toolpresets.py Co-authored-by: Iliyas Jorio --- gitfourchette/exttools/toolpresets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitfourchette/exttools/toolpresets.py b/gitfourchette/exttools/toolpresets.py index 786d54e6..0a255e4e 100644 --- a/gitfourchette/exttools/toolpresets.py +++ b/gitfourchette/exttools/toolpresets.py @@ -67,7 +67,7 @@ class ToolPresets: "macOS Terminal": "assets:mac/terminal.scpt $COMMAND", "kitty" : "kitty --single-instance $COMMAND", # single instance looks better in dock "WezTerm" : "wezterm start $COMMAND", # 'start' instead of '-e' to reuse app instance - "Ghostty" : "ghostty +new-window -e $COMMAND", + "Ghostty" : "open -na ghostty.app --args -e $COMMAND", } _windowsTerminals = {