Skip to content

Commit 0e957e1

Browse files
committed
Add tilix and qterminal to the new-window focus list.
1 parent cc58982 commit 0e957e1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/core/window.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2284,7 +2284,10 @@ window_is_terminal (MetaWindow *window)
22842284
/* Terminal -- XFCE Terminal */
22852285
else if (strcmp (window->res_class, "Terminal") == 0)
22862286
return TRUE;
2287-
2287+
else if (strcmp (window->res_class, "Tilix") == 0)
2288+
return TRUE;
2289+
else if (strcmp (window->res_class, "qterminal") == 0)
2290+
return TRUE;
22882291
return FALSE;
22892292
}
22902293

0 commit comments

Comments
 (0)