From 549d69ade5fe6e60b169d282ac217efc612f219f Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Mon, 13 May 2024 12:22:47 -0700 Subject: [PATCH] add X11 Qtile to tiling_desktop_environments closes: https://github.com/wez/wezterm/issues/5415 --- config/src/config.rs | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/config/src/config.rs b/config/src/config.rs index 49f7248b915..5b099edc7ad 100644 --- a/config/src/config.rs +++ b/config/src/config.rs @@ -1735,10 +1735,17 @@ fn default_max_fps() -> u8 { } fn default_tiling_desktop_environments() -> Vec { - ["X11 LG3D", "X11 bspwm", "X11 i3", "X11 dwm", "X11 awesome"] - .iter() - .map(|s| s.to_string()) - .collect() + [ + "X11 LG3D", + "X11 Qtile", + "X11 awesome", + "X11 bspwm", + "X11 dwm", + "X11 i3", + ] + .iter() + .map(|s| s.to_string()) + .collect() } fn default_stateless_process_list() -> Vec {