From 9c4d5ce6e4eb83440682c62f8046c2a984a3e4ec Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Tue, 14 Jan 2025 08:51:56 -0500 Subject: [PATCH] Support ptyxis in qubes-run-terminal Fedora 41 defaults to using ptyxis as its terminal instead of gnome-terminal. It also works correctly in dispVMs without needing any special --wait handling. --- app-menu/qubes-run-terminal | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-menu/qubes-run-terminal b/app-menu/qubes-run-terminal index d9defb79..2460ef95 100755 --- a/app-menu/qubes-run-terminal +++ b/app-menu/qubes-run-terminal @@ -15,6 +15,10 @@ if is_command gnome-terminal; then exec qubes-run-gnome-terminal fi +if is_command ptyxis; then + exec ptyxis +fi + if is_command kgx; then exec qubes-run-gnome-console fi