1
1
mirror of https://github.com/wez/wezterm.git synced 2024-10-03 17:57:26 +03:00

add X11 Qtile to tiling_desktop_environments

closes: https://github.com/wez/wezterm/issues/5415
This commit is contained in:
Wez Furlong 2024-05-13 12:22:47 -07:00
parent 723f062d0d
commit de10834b6d
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387

View File

@ -1735,10 +1735,17 @@ fn default_max_fps() -> u8 {
}
fn default_tiling_desktop_environments() -> Vec<String> {
["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<String> {