summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kot <janymalino@gmail.com>2021-02-03 20:44:55 +0100
committerJan Kot <janymalino@gmail.com>2021-02-03 20:44:55 +0100
commit0b0fcfad11cadd43ff1ce96800ebbce70016ffc3 (patch)
tree19f24b069311585dd650455eca5ff624eddc9835
parentf67b12467b09c9458ccdc7d852bfe0c2653430d9 (diff)
downloadglib-0b0fcfad11cadd43ff1ce96800ebbce70016ffc3.tar.gz
Add support for Tilix and Konsole
-rw-r--r--gio/gdesktopappinfo.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gio/gdesktopappinfo.c b/gio/gdesktopappinfo.c
index d1b76a8a5..1a4b97918 100644
--- a/gio/gdesktopappinfo.c
+++ b/gio/gdesktopappinfo.c
@@ -2601,6 +2601,10 @@ prepend_terminal_to_vector (int *argc,
else
{
if (check == NULL)
+ check = g_find_program_in_path ("tilix");
+ if (check == NULL)
+ check = g_find_program_in_path ("konsole");
+ if (check == NULL)
check = g_find_program_in_path ("nxterm");
if (check == NULL)
check = g_find_program_in_path ("color-xterm");